├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── data ├── minecraft │ └── tags │ │ └── function │ │ └── load.json └── moxlib │ ├── function │ ├── api │ │ ├── data │ │ │ ├── array │ │ │ │ ├── reverse.mcfunction │ │ │ │ └── slice.mcfunction │ │ │ ├── collect.mcfunction │ │ │ ├── compare.mcfunction │ │ │ ├── get.mcfunction │ │ │ ├── paginate.mcfunction │ │ │ ├── reset.mcfunction │ │ │ └── set.mcfunction │ │ ├── exec.macro.mcfunction │ │ ├── exec.mcfunction │ │ ├── helpers │ │ │ ├── block │ │ │ │ ├── get.mcfunction │ │ │ │ ├── place.mcfunction │ │ │ │ └── to_item.mcfunction │ │ │ ├── data │ │ │ │ ├── calculate_pages.mcfunction │ │ │ │ └── type.mcfunction │ │ │ ├── inventory │ │ │ │ ├── compact.mcfunction │ │ │ │ ├── free_slot.mcfunction │ │ │ │ ├── give.mcfunction │ │ │ │ ├── insert.mcfunction │ │ │ │ ├── stack_max.mcfunction │ │ │ │ └── strip_slots.mcfunction │ │ │ ├── player │ │ │ │ ├── head.mcfunction │ │ │ │ └── teleport.mcfunction │ │ │ └── reset.mcfunction │ │ ├── math │ │ │ ├── array_to_integer.mcfunction │ │ │ ├── misc │ │ │ │ └── fish.mcfunction │ │ │ ├── power.mcfunction │ │ │ ├── random.mcfunction │ │ │ └── string_to_integer.mcfunction │ │ ├── player │ │ │ ├── from_uuid.mcfunction │ │ │ └── run.mcfunction │ │ ├── string │ │ │ ├── ascii │ │ │ │ └── lookup.mcfunction │ │ │ ├── concatenate.macro.mcfunction │ │ │ ├── concatenate.mcfunction │ │ │ ├── filter.mcfunction │ │ │ ├── from_array.mcfunction │ │ │ ├── reset.mcfunction │ │ │ ├── resolve.mcfunction │ │ │ └── to_array.mcfunction │ │ ├── test │ │ │ ├── perform.mcfunction │ │ │ └── start.mcfunction │ │ ├── tui │ │ │ ├── render.mcfunction │ │ │ ├── reset.mcfunction │ │ │ └── select.mcfunction │ │ └── verify.mcfunction │ ├── data │ │ ├── _objectives.mcfunction │ │ ├── array │ │ │ ├── _objectives.mcfunction │ │ │ ├── reverse │ │ │ │ ├── init.mcfunction │ │ │ │ └── iterate.mcfunction │ │ │ └── slice │ │ │ │ ├── cleanup.mcfunction │ │ │ │ ├── init.mcfunction │ │ │ │ ├── loop.mcfunction │ │ │ │ └── setup.mcfunction │ │ ├── collect │ │ │ ├── cleanup.mcfunction │ │ │ ├── collect.mcfunction │ │ │ ├── init.mcfunction │ │ │ ├── match.mcfunction │ │ │ ├── remain.mcfunction │ │ │ └── setup.mcfunction │ │ ├── common │ │ │ ├── cleanup.mcfunction │ │ │ └── setup.mcfunction │ │ ├── compare │ │ │ ├── cleanup.mcfunction │ │ │ ├── compare.mcfunction │ │ │ ├── init.mcfunction │ │ │ ├── return.mcfunction │ │ │ └── setup.mcfunction │ │ ├── get │ │ │ ├── cleanup.mcfunction │ │ │ ├── get.mcfunction │ │ │ ├── init.mcfunction │ │ │ ├── return.mcfunction │ │ │ └── setup.mcfunction │ │ ├── paginate │ │ │ ├── append.mcfunction │ │ │ ├── cleanup.mcfunction │ │ │ ├── init.mcfunction │ │ │ ├── remove.mcfunction │ │ │ └── setup.mcfunction │ │ └── set │ │ │ ├── add.mcfunction │ │ │ ├── cleanup.mcfunction │ │ │ ├── init.mcfunction │ │ │ ├── return.mcfunction │ │ │ ├── set.mcfunction │ │ │ └── setup.mcfunction │ ├── helpers │ │ ├── _objectives.mcfunction │ │ ├── block │ │ │ ├── get │ │ │ │ ├── blocks │ │ │ │ │ ├── 0.mcfunction │ │ │ │ │ ├── 00.mcfunction │ │ │ │ │ ├── 000.mcfunction │ │ │ │ │ ├── 0000.mcfunction │ │ │ │ │ ├── 00000.mcfunction │ │ │ │ │ ├── 000000.mcfunction │ │ │ │ │ ├── 0000000.mcfunction │ │ │ │ │ ├── 00000000.mcfunction │ │ │ │ │ ├── 000000000.mcfunction │ │ │ │ │ ├── 000000001.mcfunction │ │ │ │ │ ├── 0000000010.mcfunction │ │ │ │ │ ├── 0000000011.mcfunction │ │ │ │ │ ├── 00000001.mcfunction │ │ │ │ │ ├── 000000010.mcfunction │ │ │ │ │ ├── 0000000100.mcfunction │ │ │ │ │ ├── 0000000101.mcfunction │ │ │ │ │ ├── 000000011.mcfunction │ │ │ │ │ ├── 0000000110.mcfunction │ │ │ │ │ ├── 0000000111.mcfunction │ │ │ │ │ ├── 0000001.mcfunction │ │ │ │ │ ├── 00000010.mcfunction │ │ │ │ │ ├── 000000100.mcfunction │ │ │ │ │ ├── 0000001000.mcfunction │ │ │ │ │ ├── 0000001001.mcfunction │ │ │ │ │ ├── 000000101.mcfunction │ │ │ │ │ ├── 0000001010.mcfunction │ │ │ │ │ ├── 0000001011.mcfunction │ │ │ │ │ ├── 00000011.mcfunction │ │ │ │ │ ├── 000000110.mcfunction │ │ │ │ │ ├── 0000001100.mcfunction │ │ │ │ │ ├── 0000001101.mcfunction │ │ │ │ │ ├── 000000111.mcfunction │ │ │ │ │ ├── 0000001110.mcfunction │ │ │ │ │ ├── 0000001111.mcfunction │ │ │ │ │ ├── 000001.mcfunction │ │ │ │ │ ├── 0000010.mcfunction │ │ │ │ │ ├── 00000100.mcfunction │ │ │ │ │ ├── 000001000.mcfunction │ │ │ │ │ ├── 0000010000.mcfunction │ │ │ │ │ ├── 0000010001.mcfunction │ │ │ │ │ ├── 000001001.mcfunction │ │ │ │ │ ├── 0000010010.mcfunction │ │ │ │ │ ├── 0000010011.mcfunction │ │ │ │ │ ├── 00000101.mcfunction │ │ │ │ │ ├── 000001010.mcfunction │ │ │ │ │ ├── 0000010100.mcfunction │ │ │ │ │ ├── 0000010101.mcfunction │ │ │ │ │ ├── 000001011.mcfunction │ │ │ │ │ ├── 0000010110.mcfunction │ │ │ │ │ ├── 0000010111.mcfunction │ │ │ │ │ ├── 0000011.mcfunction │ │ │ │ │ ├── 00000110.mcfunction │ │ │ │ │ ├── 000001100.mcfunction │ │ │ │ │ ├── 0000011000.mcfunction │ │ │ │ │ ├── 0000011001.mcfunction │ │ │ │ │ ├── 000001101.mcfunction │ │ │ │ │ ├── 0000011010.mcfunction │ │ │ │ │ ├── 0000011011.mcfunction │ │ │ │ │ ├── 00000111.mcfunction │ │ │ │ │ ├── 000001110.mcfunction │ │ │ │ │ ├── 0000011100.mcfunction │ │ │ │ │ ├── 0000011101.mcfunction │ │ │ │ │ ├── 000001111.mcfunction │ │ │ │ │ ├── 0000011110.mcfunction │ │ │ │ │ ├── 0000011111.mcfunction │ │ │ │ │ ├── 00001.mcfunction │ │ │ │ │ ├── 000010.mcfunction │ │ │ │ │ ├── 0000100.mcfunction │ │ │ │ │ ├── 00001000.mcfunction │ │ │ │ │ ├── 000010000.mcfunction │ │ │ │ │ ├── 000010001.mcfunction │ │ │ │ │ ├── 0000100010.mcfunction │ │ │ │ │ ├── 0000100011.mcfunction │ │ │ │ │ ├── 00001001.mcfunction │ │ │ │ │ ├── 000010010.mcfunction │ │ │ │ │ ├── 0000100100.mcfunction │ │ │ │ │ ├── 0000100101.mcfunction │ │ │ │ │ ├── 000010011.mcfunction │ │ │ │ │ ├── 0000100110.mcfunction │ │ │ │ │ ├── 0000100111.mcfunction │ │ │ │ │ ├── 0000101.mcfunction │ │ │ │ │ ├── 00001010.mcfunction │ │ │ │ │ ├── 000010100.mcfunction │ │ │ │ │ ├── 0000101000.mcfunction │ │ │ │ │ ├── 0000101001.mcfunction │ │ │ │ │ ├── 000010101.mcfunction │ │ │ │ │ ├── 0000101010.mcfunction │ │ │ │ │ ├── 0000101011.mcfunction │ │ │ │ │ ├── 00001011.mcfunction │ │ │ │ │ ├── 000010110.mcfunction │ │ │ │ │ ├── 0000101100.mcfunction │ │ │ │ │ ├── 0000101101.mcfunction │ │ │ │ │ ├── 000010111.mcfunction │ │ │ │ │ ├── 0000101110.mcfunction │ │ │ │ │ ├── 0000101111.mcfunction │ │ │ │ │ ├── 000011.mcfunction │ │ │ │ │ ├── 0000110.mcfunction │ │ │ │ │ ├── 00001100.mcfunction │ │ │ │ │ ├── 000011000.mcfunction │ │ │ │ │ ├── 0000110000.mcfunction │ │ │ │ │ ├── 0000110001.mcfunction │ │ │ │ │ ├── 000011001.mcfunction │ │ │ │ │ ├── 0000110010.mcfunction │ │ │ │ │ ├── 0000110011.mcfunction │ │ │ │ │ ├── 00001101.mcfunction │ │ │ │ │ ├── 000011010.mcfunction │ │ │ │ │ ├── 0000110100.mcfunction │ │ │ │ │ ├── 0000110101.mcfunction │ │ │ │ │ ├── 000011011.mcfunction │ │ │ │ │ ├── 0000110110.mcfunction │ │ │ │ │ ├── 0000110111.mcfunction │ │ │ │ │ ├── 0000111.mcfunction │ │ │ │ │ ├── 00001110.mcfunction │ │ │ │ │ ├── 000011100.mcfunction │ │ │ │ │ ├── 0000111000.mcfunction │ │ │ │ │ ├── 0000111001.mcfunction │ │ │ │ │ ├── 000011101.mcfunction │ │ │ │ │ ├── 0000111010.mcfunction │ │ │ │ │ ├── 0000111011.mcfunction │ │ │ │ │ ├── 00001111.mcfunction │ │ │ │ │ ├── 000011110.mcfunction │ │ │ │ │ ├── 0000111100.mcfunction │ │ │ │ │ ├── 0000111101.mcfunction │ │ │ │ │ ├── 000011111.mcfunction │ │ │ │ │ ├── 0000111110.mcfunction │ │ │ │ │ ├── 0000111111.mcfunction │ │ │ │ │ ├── 0001.mcfunction │ │ │ │ │ ├── 00010.mcfunction │ │ │ │ │ ├── 000100.mcfunction │ │ │ │ │ ├── 0001000.mcfunction │ │ │ │ │ ├── 00010000.mcfunction │ │ │ │ │ ├── 000100000.mcfunction │ │ │ │ │ ├── 000100001.mcfunction │ │ │ │ │ ├── 0001000010.mcfunction │ │ │ │ │ ├── 0001000011.mcfunction │ │ │ │ │ ├── 00010001.mcfunction │ │ │ │ │ ├── 000100010.mcfunction │ │ │ │ │ ├── 0001000100.mcfunction │ │ │ │ │ ├── 0001000101.mcfunction │ │ │ │ │ ├── 000100011.mcfunction │ │ │ │ │ ├── 0001000110.mcfunction │ │ │ │ │ ├── 0001000111.mcfunction │ │ │ │ │ ├── 0001001.mcfunction │ │ │ │ │ ├── 00010010.mcfunction │ │ │ │ │ ├── 000100100.mcfunction │ │ │ │ │ ├── 0001001000.mcfunction │ │ │ │ │ ├── 0001001001.mcfunction │ │ │ │ │ ├── 000100101.mcfunction │ │ │ │ │ ├── 0001001010.mcfunction │ │ │ │ │ ├── 0001001011.mcfunction │ │ │ │ │ ├── 00010011.mcfunction │ │ │ │ │ ├── 000100110.mcfunction │ │ │ │ │ ├── 0001001100.mcfunction │ │ │ │ │ ├── 0001001101.mcfunction │ │ │ │ │ ├── 000100111.mcfunction │ │ │ │ │ ├── 0001001110.mcfunction │ │ │ │ │ ├── 0001001111.mcfunction │ │ │ │ │ ├── 000101.mcfunction │ │ │ │ │ ├── 0001010.mcfunction │ │ │ │ │ ├── 00010100.mcfunction │ │ │ │ │ ├── 000101000.mcfunction │ │ │ │ │ ├── 0001010000.mcfunction │ │ │ │ │ ├── 0001010001.mcfunction │ │ │ │ │ ├── 000101001.mcfunction │ │ │ │ │ ├── 0001010010.mcfunction │ │ │ │ │ ├── 0001010011.mcfunction │ │ │ │ │ ├── 00010101.mcfunction │ │ │ │ │ ├── 000101010.mcfunction │ │ │ │ │ ├── 0001010100.mcfunction │ │ │ │ │ ├── 0001010101.mcfunction │ │ │ │ │ ├── 000101011.mcfunction │ │ │ │ │ ├── 0001010110.mcfunction │ │ │ │ │ ├── 0001010111.mcfunction │ │ │ │ │ ├── 0001011.mcfunction │ │ │ │ │ ├── 00010110.mcfunction │ │ │ │ │ ├── 000101100.mcfunction │ │ │ │ │ ├── 0001011000.mcfunction │ │ │ │ │ ├── 0001011001.mcfunction │ │ │ │ │ ├── 000101101.mcfunction │ │ │ │ │ ├── 0001011010.mcfunction │ │ │ │ │ ├── 0001011011.mcfunction │ │ │ │ │ ├── 00010111.mcfunction │ │ │ │ │ ├── 000101110.mcfunction │ │ │ │ │ ├── 0001011100.mcfunction │ │ │ │ │ ├── 0001011101.mcfunction │ │ │ │ │ ├── 000101111.mcfunction │ │ │ │ │ ├── 0001011110.mcfunction │ │ │ │ │ ├── 0001011111.mcfunction │ │ │ │ │ ├── 00011.mcfunction │ │ │ │ │ ├── 000110.mcfunction │ │ │ │ │ ├── 0001100.mcfunction │ │ │ │ │ ├── 00011000.mcfunction │ │ │ │ │ ├── 000110000.mcfunction │ │ │ │ │ ├── 000110001.mcfunction │ │ │ │ │ ├── 0001100010.mcfunction │ │ │ │ │ ├── 0001100011.mcfunction │ │ │ │ │ ├── 00011001.mcfunction │ │ │ │ │ ├── 000110010.mcfunction │ │ │ │ │ ├── 0001100100.mcfunction │ │ │ │ │ ├── 0001100101.mcfunction │ │ │ │ │ ├── 000110011.mcfunction │ │ │ │ │ ├── 0001100110.mcfunction │ │ │ │ │ ├── 0001100111.mcfunction │ │ │ │ │ ├── 0001101.mcfunction │ │ │ │ │ ├── 00011010.mcfunction │ │ │ │ │ ├── 000110100.mcfunction │ │ │ │ │ ├── 0001101000.mcfunction │ │ │ │ │ ├── 0001101001.mcfunction │ │ │ │ │ ├── 000110101.mcfunction │ │ │ │ │ ├── 0001101010.mcfunction │ │ │ │ │ ├── 0001101011.mcfunction │ │ │ │ │ ├── 00011011.mcfunction │ │ │ │ │ ├── 000110110.mcfunction │ │ │ │ │ ├── 0001101100.mcfunction │ │ │ │ │ ├── 0001101101.mcfunction │ │ │ │ │ ├── 000110111.mcfunction │ │ │ │ │ ├── 0001101110.mcfunction │ │ │ │ │ ├── 0001101111.mcfunction │ │ │ │ │ ├── 000111.mcfunction │ │ │ │ │ ├── 0001110.mcfunction │ │ │ │ │ ├── 00011100.mcfunction │ │ │ │ │ ├── 000111000.mcfunction │ │ │ │ │ ├── 0001110000.mcfunction │ │ │ │ │ ├── 0001110001.mcfunction │ │ │ │ │ ├── 000111001.mcfunction │ │ │ │ │ ├── 0001110010.mcfunction │ │ │ │ │ ├── 0001110011.mcfunction │ │ │ │ │ ├── 00011101.mcfunction │ │ │ │ │ ├── 000111010.mcfunction │ │ │ │ │ ├── 0001110100.mcfunction │ │ │ │ │ ├── 0001110101.mcfunction │ │ │ │ │ ├── 000111011.mcfunction │ │ │ │ │ ├── 0001110110.mcfunction │ │ │ │ │ ├── 0001110111.mcfunction │ │ │ │ │ ├── 0001111.mcfunction │ │ │ │ │ ├── 00011110.mcfunction │ │ │ │ │ ├── 000111100.mcfunction │ │ │ │ │ ├── 0001111000.mcfunction │ │ │ │ │ ├── 0001111001.mcfunction │ │ │ │ │ ├── 000111101.mcfunction │ │ │ │ │ ├── 0001111010.mcfunction │ │ │ │ │ ├── 0001111011.mcfunction │ │ │ │ │ ├── 00011111.mcfunction │ │ │ │ │ ├── 000111110.mcfunction │ │ │ │ │ ├── 0001111100.mcfunction │ │ │ │ │ ├── 0001111101.mcfunction │ │ │ │ │ ├── 000111111.mcfunction │ │ │ │ │ ├── 0001111110.mcfunction │ │ │ │ │ ├── 0001111111.mcfunction │ │ │ │ │ ├── 001.mcfunction │ │ │ │ │ ├── 0010.mcfunction │ │ │ │ │ ├── 00100.mcfunction │ │ │ │ │ ├── 001000.mcfunction │ │ │ │ │ ├── 0010000.mcfunction │ │ │ │ │ ├── 00100000.mcfunction │ │ │ │ │ ├── 001000000.mcfunction │ │ │ │ │ ├── 001000001.mcfunction │ │ │ │ │ ├── 0010000010.mcfunction │ │ │ │ │ ├── 0010000011.mcfunction │ │ │ │ │ ├── 00100001.mcfunction │ │ │ │ │ ├── 001000010.mcfunction │ │ │ │ │ ├── 0010000100.mcfunction │ │ │ │ │ ├── 0010000101.mcfunction │ │ │ │ │ ├── 001000011.mcfunction │ │ │ │ │ ├── 0010000110.mcfunction │ │ │ │ │ ├── 0010000111.mcfunction │ │ │ │ │ ├── 0010001.mcfunction │ │ │ │ │ ├── 00100010.mcfunction │ │ │ │ │ ├── 001000100.mcfunction │ │ │ │ │ ├── 0010001000.mcfunction │ │ │ │ │ ├── 0010001001.mcfunction │ │ │ │ │ ├── 001000101.mcfunction │ │ │ │ │ ├── 0010001010.mcfunction │ │ │ │ │ ├── 0010001011.mcfunction │ │ │ │ │ ├── 00100011.mcfunction │ │ │ │ │ ├── 001000110.mcfunction │ │ │ │ │ ├── 0010001100.mcfunction │ │ │ │ │ ├── 0010001101.mcfunction │ │ │ │ │ ├── 001000111.mcfunction │ │ │ │ │ ├── 0010001110.mcfunction │ │ │ │ │ ├── 0010001111.mcfunction │ │ │ │ │ ├── 001001.mcfunction │ │ │ │ │ ├── 0010010.mcfunction │ │ │ │ │ ├── 00100100.mcfunction │ │ │ │ │ ├── 001001000.mcfunction │ │ │ │ │ ├── 0010010000.mcfunction │ │ │ │ │ ├── 0010010001.mcfunction │ │ │ │ │ ├── 001001001.mcfunction │ │ │ │ │ ├── 0010010010.mcfunction │ │ │ │ │ ├── 0010010011.mcfunction │ │ │ │ │ ├── 00100101.mcfunction │ │ │ │ │ ├── 001001010.mcfunction │ │ │ │ │ ├── 0010010100.mcfunction │ │ │ │ │ ├── 0010010101.mcfunction │ │ │ │ │ ├── 001001011.mcfunction │ │ │ │ │ ├── 0010010110.mcfunction │ │ │ │ │ ├── 0010010111.mcfunction │ │ │ │ │ ├── 0010011.mcfunction │ │ │ │ │ ├── 00100110.mcfunction │ │ │ │ │ ├── 001001100.mcfunction │ │ │ │ │ ├── 0010011000.mcfunction │ │ │ │ │ ├── 0010011001.mcfunction │ │ │ │ │ ├── 001001101.mcfunction │ │ │ │ │ ├── 0010011010.mcfunction │ │ │ │ │ ├── 0010011011.mcfunction │ │ │ │ │ ├── 00100111.mcfunction │ │ │ │ │ ├── 001001110.mcfunction │ │ │ │ │ ├── 0010011100.mcfunction │ │ │ │ │ ├── 0010011101.mcfunction │ │ │ │ │ ├── 001001111.mcfunction │ │ │ │ │ ├── 0010011110.mcfunction │ │ │ │ │ ├── 0010011111.mcfunction │ │ │ │ │ ├── 00101.mcfunction │ │ │ │ │ ├── 001010.mcfunction │ │ │ │ │ ├── 0010100.mcfunction │ │ │ │ │ ├── 00101000.mcfunction │ │ │ │ │ ├── 001010000.mcfunction │ │ │ │ │ ├── 001010001.mcfunction │ │ │ │ │ ├── 0010100010.mcfunction │ │ │ │ │ ├── 0010100011.mcfunction │ │ │ │ │ ├── 00101001.mcfunction │ │ │ │ │ ├── 001010010.mcfunction │ │ │ │ │ ├── 0010100100.mcfunction │ │ │ │ │ ├── 0010100101.mcfunction │ │ │ │ │ ├── 001010011.mcfunction │ │ │ │ │ ├── 0010100110.mcfunction │ │ │ │ │ ├── 0010100111.mcfunction │ │ │ │ │ ├── 0010101.mcfunction │ │ │ │ │ ├── 00101010.mcfunction │ │ │ │ │ ├── 001010100.mcfunction │ │ │ │ │ ├── 0010101000.mcfunction │ │ │ │ │ ├── 0010101001.mcfunction │ │ │ │ │ ├── 001010101.mcfunction │ │ │ │ │ ├── 0010101010.mcfunction │ │ │ │ │ ├── 0010101011.mcfunction │ │ │ │ │ ├── 00101011.mcfunction │ │ │ │ │ ├── 001010110.mcfunction │ │ │ │ │ ├── 0010101100.mcfunction │ │ │ │ │ ├── 0010101101.mcfunction │ │ │ │ │ ├── 001010111.mcfunction │ │ │ │ │ ├── 0010101110.mcfunction │ │ │ │ │ ├── 0010101111.mcfunction │ │ │ │ │ ├── 001011.mcfunction │ │ │ │ │ ├── 0010110.mcfunction │ │ │ │ │ ├── 00101100.mcfunction │ │ │ │ │ ├── 001011000.mcfunction │ │ │ │ │ ├── 0010110000.mcfunction │ │ │ │ │ ├── 0010110001.mcfunction │ │ │ │ │ ├── 001011001.mcfunction │ │ │ │ │ ├── 0010110010.mcfunction │ │ │ │ │ ├── 0010110011.mcfunction │ │ │ │ │ ├── 00101101.mcfunction │ │ │ │ │ ├── 001011010.mcfunction │ │ │ │ │ ├── 0010110100.mcfunction │ │ │ │ │ ├── 0010110101.mcfunction │ │ │ │ │ ├── 001011011.mcfunction │ │ │ │ │ ├── 0010110110.mcfunction │ │ │ │ │ ├── 0010110111.mcfunction │ │ │ │ │ ├── 0010111.mcfunction │ │ │ │ │ ├── 00101110.mcfunction │ │ │ │ │ ├── 001011100.mcfunction │ │ │ │ │ ├── 0010111000.mcfunction │ │ │ │ │ ├── 0010111001.mcfunction │ │ │ │ │ ├── 001011101.mcfunction │ │ │ │ │ ├── 0010111010.mcfunction │ │ │ │ │ ├── 0010111011.mcfunction │ │ │ │ │ ├── 00101111.mcfunction │ │ │ │ │ ├── 001011110.mcfunction │ │ │ │ │ ├── 0010111100.mcfunction │ │ │ │ │ ├── 0010111101.mcfunction │ │ │ │ │ ├── 001011111.mcfunction │ │ │ │ │ ├── 0010111110.mcfunction │ │ │ │ │ ├── 0010111111.mcfunction │ │ │ │ │ ├── 0011.mcfunction │ │ │ │ │ ├── 00110.mcfunction │ │ │ │ │ ├── 001100.mcfunction │ │ │ │ │ ├── 0011000.mcfunction │ │ │ │ │ ├── 00110000.mcfunction │ │ │ │ │ ├── 001100000.mcfunction │ │ │ │ │ ├── 001100001.mcfunction │ │ │ │ │ ├── 0011000010.mcfunction │ │ │ │ │ ├── 0011000011.mcfunction │ │ │ │ │ ├── 00110001.mcfunction │ │ │ │ │ ├── 001100010.mcfunction │ │ │ │ │ ├── 0011000100.mcfunction │ │ │ │ │ ├── 0011000101.mcfunction │ │ │ │ │ ├── 001100011.mcfunction │ │ │ │ │ ├── 0011000110.mcfunction │ │ │ │ │ ├── 0011000111.mcfunction │ │ │ │ │ ├── 0011001.mcfunction │ │ │ │ │ ├── 00110010.mcfunction │ │ │ │ │ ├── 001100100.mcfunction │ │ │ │ │ ├── 0011001000.mcfunction │ │ │ │ │ ├── 0011001001.mcfunction │ │ │ │ │ ├── 001100101.mcfunction │ │ │ │ │ ├── 0011001010.mcfunction │ │ │ │ │ ├── 0011001011.mcfunction │ │ │ │ │ ├── 00110011.mcfunction │ │ │ │ │ ├── 001100110.mcfunction │ │ │ │ │ ├── 0011001100.mcfunction │ │ │ │ │ ├── 0011001101.mcfunction │ │ │ │ │ ├── 001100111.mcfunction │ │ │ │ │ ├── 0011001110.mcfunction │ │ │ │ │ ├── 0011001111.mcfunction │ │ │ │ │ ├── 001101.mcfunction │ │ │ │ │ ├── 0011010.mcfunction │ │ │ │ │ ├── 00110100.mcfunction │ │ │ │ │ ├── 001101000.mcfunction │ │ │ │ │ ├── 0011010000.mcfunction │ │ │ │ │ ├── 0011010001.mcfunction │ │ │ │ │ ├── 001101001.mcfunction │ │ │ │ │ ├── 0011010010.mcfunction │ │ │ │ │ ├── 0011010011.mcfunction │ │ │ │ │ ├── 00110101.mcfunction │ │ │ │ │ ├── 001101010.mcfunction │ │ │ │ │ ├── 0011010100.mcfunction │ │ │ │ │ ├── 0011010101.mcfunction │ │ │ │ │ ├── 001101011.mcfunction │ │ │ │ │ ├── 0011010110.mcfunction │ │ │ │ │ ├── 0011010111.mcfunction │ │ │ │ │ ├── 0011011.mcfunction │ │ │ │ │ ├── 00110110.mcfunction │ │ │ │ │ ├── 001101100.mcfunction │ │ │ │ │ ├── 0011011000.mcfunction │ │ │ │ │ ├── 0011011001.mcfunction │ │ │ │ │ ├── 001101101.mcfunction │ │ │ │ │ ├── 0011011010.mcfunction │ │ │ │ │ ├── 0011011011.mcfunction │ │ │ │ │ ├── 00110111.mcfunction │ │ │ │ │ ├── 001101110.mcfunction │ │ │ │ │ ├── 0011011100.mcfunction │ │ │ │ │ ├── 0011011101.mcfunction │ │ │ │ │ ├── 001101111.mcfunction │ │ │ │ │ ├── 0011011110.mcfunction │ │ │ │ │ ├── 0011011111.mcfunction │ │ │ │ │ ├── 00111.mcfunction │ │ │ │ │ ├── 001110.mcfunction │ │ │ │ │ ├── 0011100.mcfunction │ │ │ │ │ ├── 00111000.mcfunction │ │ │ │ │ ├── 001110000.mcfunction │ │ │ │ │ ├── 0011100000.mcfunction │ │ │ │ │ ├── 0011100001.mcfunction │ │ │ │ │ ├── 001110001.mcfunction │ │ │ │ │ ├── 0011100010.mcfunction │ │ │ │ │ ├── 0011100011.mcfunction │ │ │ │ │ ├── 00111001.mcfunction │ │ │ │ │ ├── 001110010.mcfunction │ │ │ │ │ ├── 0011100100.mcfunction │ │ │ │ │ ├── 0011100101.mcfunction │ │ │ │ │ ├── 001110011.mcfunction │ │ │ │ │ ├── 0011100110.mcfunction │ │ │ │ │ ├── 0011100111.mcfunction │ │ │ │ │ ├── 0011101.mcfunction │ │ │ │ │ ├── 00111010.mcfunction │ │ │ │ │ ├── 001110100.mcfunction │ │ │ │ │ ├── 0011101000.mcfunction │ │ │ │ │ ├── 0011101001.mcfunction │ │ │ │ │ ├── 001110101.mcfunction │ │ │ │ │ ├── 0011101010.mcfunction │ │ │ │ │ ├── 0011101011.mcfunction │ │ │ │ │ ├── 00111011.mcfunction │ │ │ │ │ ├── 001110110.mcfunction │ │ │ │ │ ├── 0011101100.mcfunction │ │ │ │ │ ├── 0011101101.mcfunction │ │ │ │ │ ├── 001110111.mcfunction │ │ │ │ │ ├── 0011101110.mcfunction │ │ │ │ │ ├── 0011101111.mcfunction │ │ │ │ │ ├── 001111.mcfunction │ │ │ │ │ ├── 0011110.mcfunction │ │ │ │ │ ├── 00111100.mcfunction │ │ │ │ │ ├── 001111000.mcfunction │ │ │ │ │ ├── 0011110000.mcfunction │ │ │ │ │ ├── 0011110001.mcfunction │ │ │ │ │ ├── 001111001.mcfunction │ │ │ │ │ ├── 0011110010.mcfunction │ │ │ │ │ ├── 0011110011.mcfunction │ │ │ │ │ ├── 00111101.mcfunction │ │ │ │ │ ├── 001111010.mcfunction │ │ │ │ │ ├── 0011110100.mcfunction │ │ │ │ │ ├── 0011110101.mcfunction │ │ │ │ │ ├── 001111011.mcfunction │ │ │ │ │ ├── 0011110110.mcfunction │ │ │ │ │ ├── 0011110111.mcfunction │ │ │ │ │ ├── 0011111.mcfunction │ │ │ │ │ ├── 00111110.mcfunction │ │ │ │ │ ├── 001111100.mcfunction │ │ │ │ │ ├── 0011111000.mcfunction │ │ │ │ │ ├── 0011111001.mcfunction │ │ │ │ │ ├── 001111101.mcfunction │ │ │ │ │ ├── 0011111010.mcfunction │ │ │ │ │ ├── 0011111011.mcfunction │ │ │ │ │ ├── 00111111.mcfunction │ │ │ │ │ ├── 001111110.mcfunction │ │ │ │ │ ├── 0011111100.mcfunction │ │ │ │ │ ├── 0011111101.mcfunction │ │ │ │ │ ├── 001111111.mcfunction │ │ │ │ │ ├── 0011111110.mcfunction │ │ │ │ │ ├── 0011111111.mcfunction │ │ │ │ │ ├── 01.mcfunction │ │ │ │ │ ├── 010.mcfunction │ │ │ │ │ ├── 0100.mcfunction │ │ │ │ │ ├── 01000.mcfunction │ │ │ │ │ ├── 010000.mcfunction │ │ │ │ │ ├── 0100000.mcfunction │ │ │ │ │ ├── 01000000.mcfunction │ │ │ │ │ ├── 010000000.mcfunction │ │ │ │ │ ├── 010000001.mcfunction │ │ │ │ │ ├── 0100000010.mcfunction │ │ │ │ │ ├── 0100000011.mcfunction │ │ │ │ │ ├── 01000001.mcfunction │ │ │ │ │ ├── 010000010.mcfunction │ │ │ │ │ ├── 0100000100.mcfunction │ │ │ │ │ ├── 0100000101.mcfunction │ │ │ │ │ ├── 010000011.mcfunction │ │ │ │ │ ├── 0100000110.mcfunction │ │ │ │ │ ├── 0100000111.mcfunction │ │ │ │ │ ├── 0100001.mcfunction │ │ │ │ │ ├── 01000010.mcfunction │ │ │ │ │ ├── 010000100.mcfunction │ │ │ │ │ ├── 0100001000.mcfunction │ │ │ │ │ ├── 0100001001.mcfunction │ │ │ │ │ ├── 010000101.mcfunction │ │ │ │ │ ├── 0100001010.mcfunction │ │ │ │ │ ├── 0100001011.mcfunction │ │ │ │ │ ├── 01000011.mcfunction │ │ │ │ │ ├── 010000110.mcfunction │ │ │ │ │ ├── 0100001100.mcfunction │ │ │ │ │ ├── 0100001101.mcfunction │ │ │ │ │ ├── 010000111.mcfunction │ │ │ │ │ ├── 0100001110.mcfunction │ │ │ │ │ ├── 0100001111.mcfunction │ │ │ │ │ ├── 010001.mcfunction │ │ │ │ │ ├── 0100010.mcfunction │ │ │ │ │ ├── 01000100.mcfunction │ │ │ │ │ ├── 010001000.mcfunction │ │ │ │ │ ├── 0100010000.mcfunction │ │ │ │ │ ├── 0100010001.mcfunction │ │ │ │ │ ├── 010001001.mcfunction │ │ │ │ │ ├── 0100010010.mcfunction │ │ │ │ │ ├── 0100010011.mcfunction │ │ │ │ │ ├── 01000101.mcfunction │ │ │ │ │ ├── 010001010.mcfunction │ │ │ │ │ ├── 0100010100.mcfunction │ │ │ │ │ ├── 0100010101.mcfunction │ │ │ │ │ ├── 010001011.mcfunction │ │ │ │ │ ├── 0100010110.mcfunction │ │ │ │ │ ├── 0100010111.mcfunction │ │ │ │ │ ├── 0100011.mcfunction │ │ │ │ │ ├── 01000110.mcfunction │ │ │ │ │ ├── 010001100.mcfunction │ │ │ │ │ ├── 0100011000.mcfunction │ │ │ │ │ ├── 0100011001.mcfunction │ │ │ │ │ ├── 010001101.mcfunction │ │ │ │ │ ├── 0100011010.mcfunction │ │ │ │ │ ├── 0100011011.mcfunction │ │ │ │ │ ├── 01000111.mcfunction │ │ │ │ │ ├── 010001110.mcfunction │ │ │ │ │ ├── 0100011100.mcfunction │ │ │ │ │ ├── 0100011101.mcfunction │ │ │ │ │ ├── 010001111.mcfunction │ │ │ │ │ ├── 0100011110.mcfunction │ │ │ │ │ ├── 0100011111.mcfunction │ │ │ │ │ ├── 01001.mcfunction │ │ │ │ │ ├── 010010.mcfunction │ │ │ │ │ ├── 0100100.mcfunction │ │ │ │ │ ├── 01001000.mcfunction │ │ │ │ │ ├── 010010000.mcfunction │ │ │ │ │ ├── 010010001.mcfunction │ │ │ │ │ ├── 0100100010.mcfunction │ │ │ │ │ ├── 0100100011.mcfunction │ │ │ │ │ ├── 01001001.mcfunction │ │ │ │ │ ├── 010010010.mcfunction │ │ │ │ │ ├── 0100100100.mcfunction │ │ │ │ │ ├── 0100100101.mcfunction │ │ │ │ │ ├── 010010011.mcfunction │ │ │ │ │ ├── 0100100110.mcfunction │ │ │ │ │ ├── 0100100111.mcfunction │ │ │ │ │ ├── 0100101.mcfunction │ │ │ │ │ ├── 01001010.mcfunction │ │ │ │ │ ├── 010010100.mcfunction │ │ │ │ │ ├── 0100101000.mcfunction │ │ │ │ │ ├── 0100101001.mcfunction │ │ │ │ │ ├── 010010101.mcfunction │ │ │ │ │ ├── 0100101010.mcfunction │ │ │ │ │ ├── 0100101011.mcfunction │ │ │ │ │ ├── 01001011.mcfunction │ │ │ │ │ ├── 010010110.mcfunction │ │ │ │ │ ├── 0100101100.mcfunction │ │ │ │ │ ├── 0100101101.mcfunction │ │ │ │ │ ├── 010010111.mcfunction │ │ │ │ │ ├── 0100101110.mcfunction │ │ │ │ │ ├── 0100101111.mcfunction │ │ │ │ │ ├── 010011.mcfunction │ │ │ │ │ ├── 0100110.mcfunction │ │ │ │ │ ├── 01001100.mcfunction │ │ │ │ │ ├── 010011000.mcfunction │ │ │ │ │ ├── 0100110000.mcfunction │ │ │ │ │ ├── 0100110001.mcfunction │ │ │ │ │ ├── 010011001.mcfunction │ │ │ │ │ ├── 0100110010.mcfunction │ │ │ │ │ ├── 0100110011.mcfunction │ │ │ │ │ ├── 01001101.mcfunction │ │ │ │ │ ├── 010011010.mcfunction │ │ │ │ │ ├── 0100110100.mcfunction │ │ │ │ │ ├── 0100110101.mcfunction │ │ │ │ │ ├── 010011011.mcfunction │ │ │ │ │ ├── 0100110110.mcfunction │ │ │ │ │ ├── 0100110111.mcfunction │ │ │ │ │ ├── 0100111.mcfunction │ │ │ │ │ ├── 01001110.mcfunction │ │ │ │ │ ├── 010011100.mcfunction │ │ │ │ │ ├── 0100111000.mcfunction │ │ │ │ │ ├── 0100111001.mcfunction │ │ │ │ │ ├── 010011101.mcfunction │ │ │ │ │ ├── 0100111010.mcfunction │ │ │ │ │ ├── 0100111011.mcfunction │ │ │ │ │ ├── 01001111.mcfunction │ │ │ │ │ ├── 010011110.mcfunction │ │ │ │ │ ├── 0100111100.mcfunction │ │ │ │ │ ├── 0100111101.mcfunction │ │ │ │ │ ├── 010011111.mcfunction │ │ │ │ │ ├── 0100111110.mcfunction │ │ │ │ │ ├── 0100111111.mcfunction │ │ │ │ │ ├── 0101.mcfunction │ │ │ │ │ ├── 01010.mcfunction │ │ │ │ │ ├── 010100.mcfunction │ │ │ │ │ ├── 0101000.mcfunction │ │ │ │ │ ├── 01010000.mcfunction │ │ │ │ │ ├── 010100000.mcfunction │ │ │ │ │ ├── 010100001.mcfunction │ │ │ │ │ ├── 0101000010.mcfunction │ │ │ │ │ ├── 0101000011.mcfunction │ │ │ │ │ ├── 01010001.mcfunction │ │ │ │ │ ├── 010100010.mcfunction │ │ │ │ │ ├── 0101000100.mcfunction │ │ │ │ │ ├── 0101000101.mcfunction │ │ │ │ │ ├── 010100011.mcfunction │ │ │ │ │ ├── 0101000110.mcfunction │ │ │ │ │ ├── 0101000111.mcfunction │ │ │ │ │ ├── 0101001.mcfunction │ │ │ │ │ ├── 01010010.mcfunction │ │ │ │ │ ├── 010100100.mcfunction │ │ │ │ │ ├── 0101001000.mcfunction │ │ │ │ │ ├── 0101001001.mcfunction │ │ │ │ │ ├── 010100101.mcfunction │ │ │ │ │ ├── 0101001010.mcfunction │ │ │ │ │ ├── 0101001011.mcfunction │ │ │ │ │ ├── 01010011.mcfunction │ │ │ │ │ ├── 010100110.mcfunction │ │ │ │ │ ├── 0101001100.mcfunction │ │ │ │ │ ├── 0101001101.mcfunction │ │ │ │ │ ├── 010100111.mcfunction │ │ │ │ │ ├── 0101001110.mcfunction │ │ │ │ │ ├── 0101001111.mcfunction │ │ │ │ │ ├── 010101.mcfunction │ │ │ │ │ ├── 0101010.mcfunction │ │ │ │ │ ├── 01010100.mcfunction │ │ │ │ │ ├── 010101000.mcfunction │ │ │ │ │ ├── 0101010000.mcfunction │ │ │ │ │ ├── 0101010001.mcfunction │ │ │ │ │ ├── 010101001.mcfunction │ │ │ │ │ ├── 0101010010.mcfunction │ │ │ │ │ ├── 0101010011.mcfunction │ │ │ │ │ ├── 01010101.mcfunction │ │ │ │ │ ├── 010101010.mcfunction │ │ │ │ │ ├── 0101010100.mcfunction │ │ │ │ │ ├── 0101010101.mcfunction │ │ │ │ │ ├── 010101011.mcfunction │ │ │ │ │ ├── 0101010110.mcfunction │ │ │ │ │ ├── 0101010111.mcfunction │ │ │ │ │ ├── 0101011.mcfunction │ │ │ │ │ ├── 01010110.mcfunction │ │ │ │ │ ├── 010101100.mcfunction │ │ │ │ │ ├── 0101011000.mcfunction │ │ │ │ │ ├── 0101011001.mcfunction │ │ │ │ │ ├── 010101101.mcfunction │ │ │ │ │ ├── 0101011010.mcfunction │ │ │ │ │ ├── 0101011011.mcfunction │ │ │ │ │ ├── 01010111.mcfunction │ │ │ │ │ ├── 010101110.mcfunction │ │ │ │ │ ├── 0101011100.mcfunction │ │ │ │ │ ├── 0101011101.mcfunction │ │ │ │ │ ├── 010101111.mcfunction │ │ │ │ │ ├── 0101011110.mcfunction │ │ │ │ │ ├── 0101011111.mcfunction │ │ │ │ │ ├── 01011.mcfunction │ │ │ │ │ ├── 010110.mcfunction │ │ │ │ │ ├── 0101100.mcfunction │ │ │ │ │ ├── 01011000.mcfunction │ │ │ │ │ ├── 010110000.mcfunction │ │ │ │ │ ├── 0101100000.mcfunction │ │ │ │ │ ├── 0101100001.mcfunction │ │ │ │ │ ├── 010110001.mcfunction │ │ │ │ │ ├── 0101100010.mcfunction │ │ │ │ │ ├── 0101100011.mcfunction │ │ │ │ │ ├── 01011001.mcfunction │ │ │ │ │ ├── 010110010.mcfunction │ │ │ │ │ ├── 0101100100.mcfunction │ │ │ │ │ ├── 0101100101.mcfunction │ │ │ │ │ ├── 010110011.mcfunction │ │ │ │ │ ├── 0101100110.mcfunction │ │ │ │ │ ├── 0101100111.mcfunction │ │ │ │ │ ├── 0101101.mcfunction │ │ │ │ │ ├── 01011010.mcfunction │ │ │ │ │ ├── 010110100.mcfunction │ │ │ │ │ ├── 0101101000.mcfunction │ │ │ │ │ ├── 0101101001.mcfunction │ │ │ │ │ ├── 010110101.mcfunction │ │ │ │ │ ├── 0101101010.mcfunction │ │ │ │ │ ├── 0101101011.mcfunction │ │ │ │ │ ├── 01011011.mcfunction │ │ │ │ │ ├── 010110110.mcfunction │ │ │ │ │ ├── 0101101100.mcfunction │ │ │ │ │ ├── 0101101101.mcfunction │ │ │ │ │ ├── 010110111.mcfunction │ │ │ │ │ ├── 0101101110.mcfunction │ │ │ │ │ ├── 0101101111.mcfunction │ │ │ │ │ ├── 010111.mcfunction │ │ │ │ │ ├── 0101110.mcfunction │ │ │ │ │ ├── 01011100.mcfunction │ │ │ │ │ ├── 010111000.mcfunction │ │ │ │ │ ├── 0101110000.mcfunction │ │ │ │ │ ├── 0101110001.mcfunction │ │ │ │ │ ├── 010111001.mcfunction │ │ │ │ │ ├── 0101110010.mcfunction │ │ │ │ │ ├── 0101110011.mcfunction │ │ │ │ │ ├── 01011101.mcfunction │ │ │ │ │ ├── 010111010.mcfunction │ │ │ │ │ ├── 0101110100.mcfunction │ │ │ │ │ ├── 0101110101.mcfunction │ │ │ │ │ ├── 010111011.mcfunction │ │ │ │ │ ├── 0101110110.mcfunction │ │ │ │ │ ├── 0101110111.mcfunction │ │ │ │ │ ├── 0101111.mcfunction │ │ │ │ │ ├── 01011110.mcfunction │ │ │ │ │ ├── 010111100.mcfunction │ │ │ │ │ ├── 0101111000.mcfunction │ │ │ │ │ ├── 0101111001.mcfunction │ │ │ │ │ ├── 010111101.mcfunction │ │ │ │ │ ├── 0101111010.mcfunction │ │ │ │ │ ├── 0101111011.mcfunction │ │ │ │ │ ├── 01011111.mcfunction │ │ │ │ │ ├── 010111110.mcfunction │ │ │ │ │ ├── 0101111100.mcfunction │ │ │ │ │ ├── 0101111101.mcfunction │ │ │ │ │ ├── 010111111.mcfunction │ │ │ │ │ ├── 0101111110.mcfunction │ │ │ │ │ ├── 0101111111.mcfunction │ │ │ │ │ ├── 011.mcfunction │ │ │ │ │ ├── 0110.mcfunction │ │ │ │ │ ├── 01100.mcfunction │ │ │ │ │ ├── 011000.mcfunction │ │ │ │ │ ├── 0110000.mcfunction │ │ │ │ │ ├── 01100000.mcfunction │ │ │ │ │ ├── 011000000.mcfunction │ │ │ │ │ ├── 011000001.mcfunction │ │ │ │ │ ├── 0110000010.mcfunction │ │ │ │ │ ├── 0110000011.mcfunction │ │ │ │ │ ├── 01100001.mcfunction │ │ │ │ │ ├── 011000010.mcfunction │ │ │ │ │ ├── 0110000100.mcfunction │ │ │ │ │ ├── 0110000101.mcfunction │ │ │ │ │ ├── 011000011.mcfunction │ │ │ │ │ ├── 0110000110.mcfunction │ │ │ │ │ ├── 0110000111.mcfunction │ │ │ │ │ ├── 0110001.mcfunction │ │ │ │ │ ├── 01100010.mcfunction │ │ │ │ │ ├── 011000100.mcfunction │ │ │ │ │ ├── 0110001000.mcfunction │ │ │ │ │ ├── 0110001001.mcfunction │ │ │ │ │ ├── 011000101.mcfunction │ │ │ │ │ ├── 0110001010.mcfunction │ │ │ │ │ ├── 0110001011.mcfunction │ │ │ │ │ ├── 01100011.mcfunction │ │ │ │ │ ├── 011000110.mcfunction │ │ │ │ │ ├── 0110001100.mcfunction │ │ │ │ │ ├── 0110001101.mcfunction │ │ │ │ │ ├── 011000111.mcfunction │ │ │ │ │ ├── 0110001110.mcfunction │ │ │ │ │ ├── 0110001111.mcfunction │ │ │ │ │ ├── 011001.mcfunction │ │ │ │ │ ├── 0110010.mcfunction │ │ │ │ │ ├── 01100100.mcfunction │ │ │ │ │ ├── 011001000.mcfunction │ │ │ │ │ ├── 0110010000.mcfunction │ │ │ │ │ ├── 0110010001.mcfunction │ │ │ │ │ ├── 011001001.mcfunction │ │ │ │ │ ├── 0110010010.mcfunction │ │ │ │ │ ├── 0110010011.mcfunction │ │ │ │ │ ├── 01100101.mcfunction │ │ │ │ │ ├── 011001010.mcfunction │ │ │ │ │ ├── 0110010100.mcfunction │ │ │ │ │ ├── 0110010101.mcfunction │ │ │ │ │ ├── 011001011.mcfunction │ │ │ │ │ ├── 0110010110.mcfunction │ │ │ │ │ ├── 0110010111.mcfunction │ │ │ │ │ ├── 0110011.mcfunction │ │ │ │ │ ├── 01100110.mcfunction │ │ │ │ │ ├── 011001100.mcfunction │ │ │ │ │ ├── 0110011000.mcfunction │ │ │ │ │ ├── 0110011001.mcfunction │ │ │ │ │ ├── 011001101.mcfunction │ │ │ │ │ ├── 0110011010.mcfunction │ │ │ │ │ ├── 0110011011.mcfunction │ │ │ │ │ ├── 01100111.mcfunction │ │ │ │ │ ├── 011001110.mcfunction │ │ │ │ │ ├── 0110011100.mcfunction │ │ │ │ │ ├── 0110011101.mcfunction │ │ │ │ │ ├── 011001111.mcfunction │ │ │ │ │ ├── 0110011110.mcfunction │ │ │ │ │ ├── 0110011111.mcfunction │ │ │ │ │ ├── 01101.mcfunction │ │ │ │ │ ├── 011010.mcfunction │ │ │ │ │ ├── 0110100.mcfunction │ │ │ │ │ ├── 01101000.mcfunction │ │ │ │ │ ├── 011010000.mcfunction │ │ │ │ │ ├── 011010001.mcfunction │ │ │ │ │ ├── 0110100010.mcfunction │ │ │ │ │ ├── 0110100011.mcfunction │ │ │ │ │ ├── 01101001.mcfunction │ │ │ │ │ ├── 011010010.mcfunction │ │ │ │ │ ├── 0110100100.mcfunction │ │ │ │ │ ├── 0110100101.mcfunction │ │ │ │ │ ├── 011010011.mcfunction │ │ │ │ │ ├── 0110100110.mcfunction │ │ │ │ │ ├── 0110100111.mcfunction │ │ │ │ │ ├── 0110101.mcfunction │ │ │ │ │ ├── 01101010.mcfunction │ │ │ │ │ ├── 011010100.mcfunction │ │ │ │ │ ├── 0110101000.mcfunction │ │ │ │ │ ├── 0110101001.mcfunction │ │ │ │ │ ├── 011010101.mcfunction │ │ │ │ │ ├── 0110101010.mcfunction │ │ │ │ │ ├── 0110101011.mcfunction │ │ │ │ │ ├── 01101011.mcfunction │ │ │ │ │ ├── 011010110.mcfunction │ │ │ │ │ ├── 0110101100.mcfunction │ │ │ │ │ ├── 0110101101.mcfunction │ │ │ │ │ ├── 011010111.mcfunction │ │ │ │ │ ├── 0110101110.mcfunction │ │ │ │ │ ├── 0110101111.mcfunction │ │ │ │ │ ├── 011011.mcfunction │ │ │ │ │ ├── 0110110.mcfunction │ │ │ │ │ ├── 01101100.mcfunction │ │ │ │ │ ├── 011011000.mcfunction │ │ │ │ │ ├── 0110110000.mcfunction │ │ │ │ │ ├── 0110110001.mcfunction │ │ │ │ │ ├── 011011001.mcfunction │ │ │ │ │ ├── 0110110010.mcfunction │ │ │ │ │ ├── 0110110011.mcfunction │ │ │ │ │ ├── 01101101.mcfunction │ │ │ │ │ ├── 011011010.mcfunction │ │ │ │ │ ├── 0110110100.mcfunction │ │ │ │ │ ├── 0110110101.mcfunction │ │ │ │ │ ├── 011011011.mcfunction │ │ │ │ │ ├── 0110110110.mcfunction │ │ │ │ │ ├── 0110110111.mcfunction │ │ │ │ │ ├── 0110111.mcfunction │ │ │ │ │ ├── 01101110.mcfunction │ │ │ │ │ ├── 011011100.mcfunction │ │ │ │ │ ├── 0110111000.mcfunction │ │ │ │ │ ├── 0110111001.mcfunction │ │ │ │ │ ├── 011011101.mcfunction │ │ │ │ │ ├── 0110111010.mcfunction │ │ │ │ │ ├── 0110111011.mcfunction │ │ │ │ │ ├── 01101111.mcfunction │ │ │ │ │ ├── 011011110.mcfunction │ │ │ │ │ ├── 0110111100.mcfunction │ │ │ │ │ ├── 0110111101.mcfunction │ │ │ │ │ ├── 011011111.mcfunction │ │ │ │ │ ├── 0110111110.mcfunction │ │ │ │ │ ├── 0110111111.mcfunction │ │ │ │ │ ├── 0111.mcfunction │ │ │ │ │ ├── 01110.mcfunction │ │ │ │ │ ├── 011100.mcfunction │ │ │ │ │ ├── 0111000.mcfunction │ │ │ │ │ ├── 01110000.mcfunction │ │ │ │ │ ├── 011100000.mcfunction │ │ │ │ │ ├── 011100001.mcfunction │ │ │ │ │ ├── 0111000010.mcfunction │ │ │ │ │ ├── 0111000011.mcfunction │ │ │ │ │ ├── 01110001.mcfunction │ │ │ │ │ ├── 011100010.mcfunction │ │ │ │ │ ├── 0111000100.mcfunction │ │ │ │ │ ├── 0111000101.mcfunction │ │ │ │ │ ├── 011100011.mcfunction │ │ │ │ │ ├── 0111000110.mcfunction │ │ │ │ │ ├── 0111000111.mcfunction │ │ │ │ │ ├── 0111001.mcfunction │ │ │ │ │ ├── 01110010.mcfunction │ │ │ │ │ ├── 011100100.mcfunction │ │ │ │ │ ├── 0111001000.mcfunction │ │ │ │ │ ├── 0111001001.mcfunction │ │ │ │ │ ├── 011100101.mcfunction │ │ │ │ │ ├── 0111001010.mcfunction │ │ │ │ │ ├── 0111001011.mcfunction │ │ │ │ │ ├── 01110011.mcfunction │ │ │ │ │ ├── 011100110.mcfunction │ │ │ │ │ ├── 0111001100.mcfunction │ │ │ │ │ ├── 0111001101.mcfunction │ │ │ │ │ ├── 011100111.mcfunction │ │ │ │ │ ├── 0111001110.mcfunction │ │ │ │ │ ├── 0111001111.mcfunction │ │ │ │ │ ├── 011101.mcfunction │ │ │ │ │ ├── 0111010.mcfunction │ │ │ │ │ ├── 01110100.mcfunction │ │ │ │ │ ├── 011101000.mcfunction │ │ │ │ │ ├── 0111010000.mcfunction │ │ │ │ │ ├── 0111010001.mcfunction │ │ │ │ │ ├── 011101001.mcfunction │ │ │ │ │ ├── 0111010010.mcfunction │ │ │ │ │ ├── 0111010011.mcfunction │ │ │ │ │ ├── 01110101.mcfunction │ │ │ │ │ ├── 011101010.mcfunction │ │ │ │ │ ├── 0111010100.mcfunction │ │ │ │ │ ├── 0111010101.mcfunction │ │ │ │ │ ├── 011101011.mcfunction │ │ │ │ │ ├── 0111010110.mcfunction │ │ │ │ │ ├── 0111010111.mcfunction │ │ │ │ │ ├── 0111011.mcfunction │ │ │ │ │ ├── 01110110.mcfunction │ │ │ │ │ ├── 011101100.mcfunction │ │ │ │ │ ├── 0111011000.mcfunction │ │ │ │ │ ├── 0111011001.mcfunction │ │ │ │ │ ├── 011101101.mcfunction │ │ │ │ │ ├── 0111011010.mcfunction │ │ │ │ │ ├── 0111011011.mcfunction │ │ │ │ │ ├── 01110111.mcfunction │ │ │ │ │ ├── 011101110.mcfunction │ │ │ │ │ ├── 0111011100.mcfunction │ │ │ │ │ ├── 0111011101.mcfunction │ │ │ │ │ ├── 011101111.mcfunction │ │ │ │ │ ├── 0111011110.mcfunction │ │ │ │ │ ├── 0111011111.mcfunction │ │ │ │ │ ├── 01111.mcfunction │ │ │ │ │ ├── 011110.mcfunction │ │ │ │ │ ├── 0111100.mcfunction │ │ │ │ │ ├── 01111000.mcfunction │ │ │ │ │ ├── 011110000.mcfunction │ │ │ │ │ ├── 0111100000.mcfunction │ │ │ │ │ ├── 0111100001.mcfunction │ │ │ │ │ ├── 011110001.mcfunction │ │ │ │ │ ├── 0111100010.mcfunction │ │ │ │ │ ├── 0111100011.mcfunction │ │ │ │ │ ├── 01111001.mcfunction │ │ │ │ │ ├── 011110010.mcfunction │ │ │ │ │ ├── 0111100100.mcfunction │ │ │ │ │ ├── 0111100101.mcfunction │ │ │ │ │ ├── 011110011.mcfunction │ │ │ │ │ ├── 0111100110.mcfunction │ │ │ │ │ ├── 0111100111.mcfunction │ │ │ │ │ ├── 0111101.mcfunction │ │ │ │ │ ├── 01111010.mcfunction │ │ │ │ │ ├── 011110100.mcfunction │ │ │ │ │ ├── 0111101000.mcfunction │ │ │ │ │ ├── 0111101001.mcfunction │ │ │ │ │ ├── 011110101.mcfunction │ │ │ │ │ ├── 0111101010.mcfunction │ │ │ │ │ ├── 0111101011.mcfunction │ │ │ │ │ ├── 01111011.mcfunction │ │ │ │ │ ├── 011110110.mcfunction │ │ │ │ │ ├── 0111101100.mcfunction │ │ │ │ │ ├── 0111101101.mcfunction │ │ │ │ │ ├── 011110111.mcfunction │ │ │ │ │ ├── 0111101110.mcfunction │ │ │ │ │ ├── 0111101111.mcfunction │ │ │ │ │ ├── 011111.mcfunction │ │ │ │ │ ├── 0111110.mcfunction │ │ │ │ │ ├── 01111100.mcfunction │ │ │ │ │ ├── 011111000.mcfunction │ │ │ │ │ ├── 0111110000.mcfunction │ │ │ │ │ ├── 0111110001.mcfunction │ │ │ │ │ ├── 011111001.mcfunction │ │ │ │ │ ├── 0111110010.mcfunction │ │ │ │ │ ├── 0111110011.mcfunction │ │ │ │ │ ├── 01111101.mcfunction │ │ │ │ │ ├── 011111010.mcfunction │ │ │ │ │ ├── 0111110100.mcfunction │ │ │ │ │ ├── 0111110101.mcfunction │ │ │ │ │ ├── 011111011.mcfunction │ │ │ │ │ ├── 0111110110.mcfunction │ │ │ │ │ ├── 0111110111.mcfunction │ │ │ │ │ ├── 0111111.mcfunction │ │ │ │ │ ├── 01111110.mcfunction │ │ │ │ │ ├── 011111100.mcfunction │ │ │ │ │ ├── 0111111000.mcfunction │ │ │ │ │ ├── 0111111001.mcfunction │ │ │ │ │ ├── 011111101.mcfunction │ │ │ │ │ ├── 0111111010.mcfunction │ │ │ │ │ ├── 0111111011.mcfunction │ │ │ │ │ ├── 01111111.mcfunction │ │ │ │ │ ├── 011111110.mcfunction │ │ │ │ │ ├── 0111111100.mcfunction │ │ │ │ │ ├── 0111111101.mcfunction │ │ │ │ │ ├── 011111111.mcfunction │ │ │ │ │ ├── 0111111110.mcfunction │ │ │ │ │ ├── 0111111111.mcfunction │ │ │ │ │ ├── 1.mcfunction │ │ │ │ │ ├── 10.mcfunction │ │ │ │ │ ├── 100.mcfunction │ │ │ │ │ ├── 1000.mcfunction │ │ │ │ │ ├── 10000.mcfunction │ │ │ │ │ ├── 100000.mcfunction │ │ │ │ │ ├── 1000000.mcfunction │ │ │ │ │ ├── 10000000.mcfunction │ │ │ │ │ ├── 100000000.mcfunction │ │ │ │ │ ├── 100000001.mcfunction │ │ │ │ │ ├── 1000000010.mcfunction │ │ │ │ │ ├── 1000000011.mcfunction │ │ │ │ │ ├── 10000001.mcfunction │ │ │ │ │ ├── 100000010.mcfunction │ │ │ │ │ ├── 1000000100.mcfunction │ │ │ │ │ ├── 1000000101.mcfunction │ │ │ │ │ ├── 100000011.mcfunction │ │ │ │ │ ├── 1000000110.mcfunction │ │ │ │ │ ├── 1000000111.mcfunction │ │ │ │ │ ├── 1000001.mcfunction │ │ │ │ │ ├── 10000010.mcfunction │ │ │ │ │ ├── 100000100.mcfunction │ │ │ │ │ ├── 1000001000.mcfunction │ │ │ │ │ ├── 1000001001.mcfunction │ │ │ │ │ ├── 100000101.mcfunction │ │ │ │ │ ├── 1000001010.mcfunction │ │ │ │ │ ├── 1000001011.mcfunction │ │ │ │ │ ├── 10000011.mcfunction │ │ │ │ │ ├── 100000110.mcfunction │ │ │ │ │ ├── 1000001100.mcfunction │ │ │ │ │ ├── 1000001101.mcfunction │ │ │ │ │ ├── 100000111.mcfunction │ │ │ │ │ ├── 1000001110.mcfunction │ │ │ │ │ ├── 1000001111.mcfunction │ │ │ │ │ ├── 100001.mcfunction │ │ │ │ │ ├── 1000010.mcfunction │ │ │ │ │ ├── 10000100.mcfunction │ │ │ │ │ ├── 100001000.mcfunction │ │ │ │ │ ├── 1000010000.mcfunction │ │ │ │ │ ├── 1000010001.mcfunction │ │ │ │ │ ├── 100001001.mcfunction │ │ │ │ │ ├── 1000010010.mcfunction │ │ │ │ │ ├── 1000010011.mcfunction │ │ │ │ │ ├── 10000101.mcfunction │ │ │ │ │ ├── 100001010.mcfunction │ │ │ │ │ ├── 1000010100.mcfunction │ │ │ │ │ ├── 1000010101.mcfunction │ │ │ │ │ ├── 100001011.mcfunction │ │ │ │ │ ├── 1000010110.mcfunction │ │ │ │ │ ├── 1000010111.mcfunction │ │ │ │ │ ├── 1000011.mcfunction │ │ │ │ │ ├── 10000110.mcfunction │ │ │ │ │ ├── 100001100.mcfunction │ │ │ │ │ ├── 1000011000.mcfunction │ │ │ │ │ ├── 1000011001.mcfunction │ │ │ │ │ ├── 100001101.mcfunction │ │ │ │ │ ├── 1000011010.mcfunction │ │ │ │ │ ├── 1000011011.mcfunction │ │ │ │ │ ├── 10000111.mcfunction │ │ │ │ │ ├── 100001110.mcfunction │ │ │ │ │ ├── 1000011100.mcfunction │ │ │ │ │ ├── 1000011101.mcfunction │ │ │ │ │ ├── 100001111.mcfunction │ │ │ │ │ ├── 1000011110.mcfunction │ │ │ │ │ ├── 1000011111.mcfunction │ │ │ │ │ ├── 10001.mcfunction │ │ │ │ │ ├── 100010.mcfunction │ │ │ │ │ ├── 1000100.mcfunction │ │ │ │ │ ├── 10001000.mcfunction │ │ │ │ │ ├── 100010000.mcfunction │ │ │ │ │ ├── 100010001.mcfunction │ │ │ │ │ ├── 1000100010.mcfunction │ │ │ │ │ ├── 1000100011.mcfunction │ │ │ │ │ ├── 10001001.mcfunction │ │ │ │ │ ├── 100010010.mcfunction │ │ │ │ │ ├── 1000100100.mcfunction │ │ │ │ │ ├── 1000100101.mcfunction │ │ │ │ │ ├── 100010011.mcfunction │ │ │ │ │ ├── 1000100110.mcfunction │ │ │ │ │ ├── 1000100111.mcfunction │ │ │ │ │ ├── 1000101.mcfunction │ │ │ │ │ ├── 10001010.mcfunction │ │ │ │ │ ├── 100010100.mcfunction │ │ │ │ │ ├── 1000101000.mcfunction │ │ │ │ │ ├── 1000101001.mcfunction │ │ │ │ │ ├── 100010101.mcfunction │ │ │ │ │ ├── 1000101010.mcfunction │ │ │ │ │ ├── 1000101011.mcfunction │ │ │ │ │ ├── 10001011.mcfunction │ │ │ │ │ ├── 100010110.mcfunction │ │ │ │ │ ├── 1000101100.mcfunction │ │ │ │ │ ├── 1000101101.mcfunction │ │ │ │ │ ├── 100010111.mcfunction │ │ │ │ │ ├── 1000101110.mcfunction │ │ │ │ │ ├── 1000101111.mcfunction │ │ │ │ │ ├── 100011.mcfunction │ │ │ │ │ ├── 1000110.mcfunction │ │ │ │ │ ├── 10001100.mcfunction │ │ │ │ │ ├── 100011000.mcfunction │ │ │ │ │ ├── 1000110000.mcfunction │ │ │ │ │ ├── 1000110001.mcfunction │ │ │ │ │ ├── 100011001.mcfunction │ │ │ │ │ ├── 1000110010.mcfunction │ │ │ │ │ ├── 1000110011.mcfunction │ │ │ │ │ ├── 10001101.mcfunction │ │ │ │ │ ├── 100011010.mcfunction │ │ │ │ │ ├── 1000110100.mcfunction │ │ │ │ │ ├── 1000110101.mcfunction │ │ │ │ │ ├── 100011011.mcfunction │ │ │ │ │ ├── 1000110110.mcfunction │ │ │ │ │ ├── 1000110111.mcfunction │ │ │ │ │ ├── 1000111.mcfunction │ │ │ │ │ ├── 10001110.mcfunction │ │ │ │ │ ├── 100011100.mcfunction │ │ │ │ │ ├── 1000111000.mcfunction │ │ │ │ │ ├── 1000111001.mcfunction │ │ │ │ │ ├── 100011101.mcfunction │ │ │ │ │ ├── 1000111010.mcfunction │ │ │ │ │ ├── 1000111011.mcfunction │ │ │ │ │ ├── 10001111.mcfunction │ │ │ │ │ ├── 100011110.mcfunction │ │ │ │ │ ├── 1000111100.mcfunction │ │ │ │ │ ├── 1000111101.mcfunction │ │ │ │ │ ├── 100011111.mcfunction │ │ │ │ │ ├── 1000111110.mcfunction │ │ │ │ │ ├── 1000111111.mcfunction │ │ │ │ │ ├── 1001.mcfunction │ │ │ │ │ ├── 10010.mcfunction │ │ │ │ │ ├── 100100.mcfunction │ │ │ │ │ ├── 1001000.mcfunction │ │ │ │ │ ├── 10010000.mcfunction │ │ │ │ │ ├── 100100000.mcfunction │ │ │ │ │ ├── 100100001.mcfunction │ │ │ │ │ ├── 1001000010.mcfunction │ │ │ │ │ ├── 1001000011.mcfunction │ │ │ │ │ ├── 10010001.mcfunction │ │ │ │ │ ├── 100100010.mcfunction │ │ │ │ │ ├── 1001000100.mcfunction │ │ │ │ │ ├── 1001000101.mcfunction │ │ │ │ │ ├── 100100011.mcfunction │ │ │ │ │ ├── 1001000110.mcfunction │ │ │ │ │ ├── 1001000111.mcfunction │ │ │ │ │ ├── 1001001.mcfunction │ │ │ │ │ ├── 10010010.mcfunction │ │ │ │ │ ├── 100100100.mcfunction │ │ │ │ │ ├── 1001001000.mcfunction │ │ │ │ │ ├── 1001001001.mcfunction │ │ │ │ │ ├── 100100101.mcfunction │ │ │ │ │ ├── 1001001010.mcfunction │ │ │ │ │ ├── 1001001011.mcfunction │ │ │ │ │ ├── 10010011.mcfunction │ │ │ │ │ ├── 100100110.mcfunction │ │ │ │ │ ├── 1001001100.mcfunction │ │ │ │ │ ├── 1001001101.mcfunction │ │ │ │ │ ├── 100100111.mcfunction │ │ │ │ │ ├── 1001001110.mcfunction │ │ │ │ │ ├── 1001001111.mcfunction │ │ │ │ │ ├── 100101.mcfunction │ │ │ │ │ ├── 1001010.mcfunction │ │ │ │ │ ├── 10010100.mcfunction │ │ │ │ │ ├── 100101000.mcfunction │ │ │ │ │ ├── 1001010000.mcfunction │ │ │ │ │ ├── 1001010001.mcfunction │ │ │ │ │ ├── 100101001.mcfunction │ │ │ │ │ ├── 1001010010.mcfunction │ │ │ │ │ ├── 1001010011.mcfunction │ │ │ │ │ ├── 10010101.mcfunction │ │ │ │ │ ├── 100101010.mcfunction │ │ │ │ │ ├── 1001010100.mcfunction │ │ │ │ │ ├── 1001010101.mcfunction │ │ │ │ │ ├── 100101011.mcfunction │ │ │ │ │ ├── 1001010110.mcfunction │ │ │ │ │ ├── 1001010111.mcfunction │ │ │ │ │ ├── 1001011.mcfunction │ │ │ │ │ ├── 10010110.mcfunction │ │ │ │ │ ├── 100101100.mcfunction │ │ │ │ │ ├── 1001011000.mcfunction │ │ │ │ │ ├── 1001011001.mcfunction │ │ │ │ │ ├── 100101101.mcfunction │ │ │ │ │ ├── 1001011010.mcfunction │ │ │ │ │ ├── 1001011011.mcfunction │ │ │ │ │ ├── 10010111.mcfunction │ │ │ │ │ ├── 100101110.mcfunction │ │ │ │ │ ├── 1001011100.mcfunction │ │ │ │ │ ├── 1001011101.mcfunction │ │ │ │ │ ├── 100101111.mcfunction │ │ │ │ │ ├── 1001011110.mcfunction │ │ │ │ │ ├── 1001011111.mcfunction │ │ │ │ │ ├── 10011.mcfunction │ │ │ │ │ ├── 100110.mcfunction │ │ │ │ │ ├── 1001100.mcfunction │ │ │ │ │ ├── 10011000.mcfunction │ │ │ │ │ ├── 100110000.mcfunction │ │ │ │ │ ├── 100110001.mcfunction │ │ │ │ │ ├── 1001100010.mcfunction │ │ │ │ │ ├── 1001100011.mcfunction │ │ │ │ │ ├── 10011001.mcfunction │ │ │ │ │ ├── 100110010.mcfunction │ │ │ │ │ ├── 1001100100.mcfunction │ │ │ │ │ ├── 1001100101.mcfunction │ │ │ │ │ ├── 100110011.mcfunction │ │ │ │ │ ├── 1001100110.mcfunction │ │ │ │ │ ├── 1001100111.mcfunction │ │ │ │ │ ├── 1001101.mcfunction │ │ │ │ │ ├── 10011010.mcfunction │ │ │ │ │ ├── 100110100.mcfunction │ │ │ │ │ ├── 1001101000.mcfunction │ │ │ │ │ ├── 1001101001.mcfunction │ │ │ │ │ ├── 100110101.mcfunction │ │ │ │ │ ├── 1001101010.mcfunction │ │ │ │ │ ├── 1001101011.mcfunction │ │ │ │ │ ├── 10011011.mcfunction │ │ │ │ │ ├── 100110110.mcfunction │ │ │ │ │ ├── 1001101100.mcfunction │ │ │ │ │ ├── 1001101101.mcfunction │ │ │ │ │ ├── 100110111.mcfunction │ │ │ │ │ ├── 1001101110.mcfunction │ │ │ │ │ ├── 1001101111.mcfunction │ │ │ │ │ ├── 100111.mcfunction │ │ │ │ │ ├── 1001110.mcfunction │ │ │ │ │ ├── 10011100.mcfunction │ │ │ │ │ ├── 100111000.mcfunction │ │ │ │ │ ├── 1001110000.mcfunction │ │ │ │ │ ├── 1001110001.mcfunction │ │ │ │ │ ├── 100111001.mcfunction │ │ │ │ │ ├── 1001110010.mcfunction │ │ │ │ │ ├── 1001110011.mcfunction │ │ │ │ │ ├── 10011101.mcfunction │ │ │ │ │ ├── 100111010.mcfunction │ │ │ │ │ ├── 1001110100.mcfunction │ │ │ │ │ ├── 1001110101.mcfunction │ │ │ │ │ ├── 100111011.mcfunction │ │ │ │ │ ├── 1001110110.mcfunction │ │ │ │ │ ├── 1001110111.mcfunction │ │ │ │ │ ├── 1001111.mcfunction │ │ │ │ │ ├── 10011110.mcfunction │ │ │ │ │ ├── 100111100.mcfunction │ │ │ │ │ ├── 1001111000.mcfunction │ │ │ │ │ ├── 1001111001.mcfunction │ │ │ │ │ ├── 100111101.mcfunction │ │ │ │ │ ├── 1001111010.mcfunction │ │ │ │ │ ├── 1001111011.mcfunction │ │ │ │ │ ├── 10011111.mcfunction │ │ │ │ │ ├── 100111110.mcfunction │ │ │ │ │ ├── 1001111100.mcfunction │ │ │ │ │ ├── 1001111101.mcfunction │ │ │ │ │ ├── 100111111.mcfunction │ │ │ │ │ ├── 1001111110.mcfunction │ │ │ │ │ ├── 1001111111.mcfunction │ │ │ │ │ ├── 101.mcfunction │ │ │ │ │ ├── 1010.mcfunction │ │ │ │ │ ├── 10100.mcfunction │ │ │ │ │ ├── 101000.mcfunction │ │ │ │ │ ├── 1010000.mcfunction │ │ │ │ │ ├── 10100000.mcfunction │ │ │ │ │ ├── 101000000.mcfunction │ │ │ │ │ ├── 101000001.mcfunction │ │ │ │ │ ├── 1010000010.mcfunction │ │ │ │ │ ├── 1010000011.mcfunction │ │ │ │ │ ├── 10100001.mcfunction │ │ │ │ │ ├── 101000010.mcfunction │ │ │ │ │ ├── 1010000100.mcfunction │ │ │ │ │ ├── 1010000101.mcfunction │ │ │ │ │ ├── 101000011.mcfunction │ │ │ │ │ ├── 1010000110.mcfunction │ │ │ │ │ ├── 1010000111.mcfunction │ │ │ │ │ ├── 1010001.mcfunction │ │ │ │ │ ├── 10100010.mcfunction │ │ │ │ │ ├── 101000100.mcfunction │ │ │ │ │ ├── 1010001000.mcfunction │ │ │ │ │ ├── 1010001001.mcfunction │ │ │ │ │ ├── 101000101.mcfunction │ │ │ │ │ ├── 1010001010.mcfunction │ │ │ │ │ ├── 1010001011.mcfunction │ │ │ │ │ ├── 10100011.mcfunction │ │ │ │ │ ├── 101000110.mcfunction │ │ │ │ │ ├── 1010001100.mcfunction │ │ │ │ │ ├── 1010001101.mcfunction │ │ │ │ │ ├── 101000111.mcfunction │ │ │ │ │ ├── 1010001110.mcfunction │ │ │ │ │ ├── 1010001111.mcfunction │ │ │ │ │ ├── 101001.mcfunction │ │ │ │ │ ├── 1010010.mcfunction │ │ │ │ │ ├── 10100100.mcfunction │ │ │ │ │ ├── 101001000.mcfunction │ │ │ │ │ ├── 1010010000.mcfunction │ │ │ │ │ ├── 1010010001.mcfunction │ │ │ │ │ ├── 101001001.mcfunction │ │ │ │ │ ├── 1010010010.mcfunction │ │ │ │ │ ├── 1010010011.mcfunction │ │ │ │ │ ├── 10100101.mcfunction │ │ │ │ │ ├── 101001010.mcfunction │ │ │ │ │ ├── 1010010100.mcfunction │ │ │ │ │ ├── 1010010101.mcfunction │ │ │ │ │ ├── 101001011.mcfunction │ │ │ │ │ ├── 1010010110.mcfunction │ │ │ │ │ ├── 1010010111.mcfunction │ │ │ │ │ ├── 1010011.mcfunction │ │ │ │ │ ├── 10100110.mcfunction │ │ │ │ │ ├── 101001100.mcfunction │ │ │ │ │ ├── 1010011000.mcfunction │ │ │ │ │ ├── 1010011001.mcfunction │ │ │ │ │ ├── 101001101.mcfunction │ │ │ │ │ ├── 1010011010.mcfunction │ │ │ │ │ ├── 1010011011.mcfunction │ │ │ │ │ ├── 10100111.mcfunction │ │ │ │ │ ├── 101001110.mcfunction │ │ │ │ │ ├── 1010011100.mcfunction │ │ │ │ │ ├── 1010011101.mcfunction │ │ │ │ │ ├── 101001111.mcfunction │ │ │ │ │ ├── 1010011110.mcfunction │ │ │ │ │ ├── 1010011111.mcfunction │ │ │ │ │ ├── 10101.mcfunction │ │ │ │ │ ├── 101010.mcfunction │ │ │ │ │ ├── 1010100.mcfunction │ │ │ │ │ ├── 10101000.mcfunction │ │ │ │ │ ├── 101010000.mcfunction │ │ │ │ │ ├── 101010001.mcfunction │ │ │ │ │ ├── 1010100010.mcfunction │ │ │ │ │ ├── 1010100011.mcfunction │ │ │ │ │ ├── 10101001.mcfunction │ │ │ │ │ ├── 101010010.mcfunction │ │ │ │ │ ├── 1010100100.mcfunction │ │ │ │ │ ├── 1010100101.mcfunction │ │ │ │ │ ├── 101010011.mcfunction │ │ │ │ │ ├── 1010100110.mcfunction │ │ │ │ │ ├── 1010100111.mcfunction │ │ │ │ │ ├── 1010101.mcfunction │ │ │ │ │ ├── 10101010.mcfunction │ │ │ │ │ ├── 101010100.mcfunction │ │ │ │ │ ├── 1010101000.mcfunction │ │ │ │ │ ├── 1010101001.mcfunction │ │ │ │ │ ├── 101010101.mcfunction │ │ │ │ │ ├── 1010101010.mcfunction │ │ │ │ │ ├── 1010101011.mcfunction │ │ │ │ │ ├── 10101011.mcfunction │ │ │ │ │ ├── 101010110.mcfunction │ │ │ │ │ ├── 1010101100.mcfunction │ │ │ │ │ ├── 1010101101.mcfunction │ │ │ │ │ ├── 101010111.mcfunction │ │ │ │ │ ├── 1010101110.mcfunction │ │ │ │ │ ├── 1010101111.mcfunction │ │ │ │ │ ├── 101011.mcfunction │ │ │ │ │ ├── 1010110.mcfunction │ │ │ │ │ ├── 10101100.mcfunction │ │ │ │ │ ├── 101011000.mcfunction │ │ │ │ │ ├── 1010110000.mcfunction │ │ │ │ │ ├── 1010110001.mcfunction │ │ │ │ │ ├── 101011001.mcfunction │ │ │ │ │ ├── 1010110010.mcfunction │ │ │ │ │ ├── 1010110011.mcfunction │ │ │ │ │ ├── 10101101.mcfunction │ │ │ │ │ ├── 101011010.mcfunction │ │ │ │ │ ├── 1010110100.mcfunction │ │ │ │ │ ├── 1010110101.mcfunction │ │ │ │ │ ├── 101011011.mcfunction │ │ │ │ │ ├── 1010110110.mcfunction │ │ │ │ │ ├── 1010110111.mcfunction │ │ │ │ │ ├── 1010111.mcfunction │ │ │ │ │ ├── 10101110.mcfunction │ │ │ │ │ ├── 101011100.mcfunction │ │ │ │ │ ├── 1010111000.mcfunction │ │ │ │ │ ├── 1010111001.mcfunction │ │ │ │ │ ├── 101011101.mcfunction │ │ │ │ │ ├── 1010111010.mcfunction │ │ │ │ │ ├── 1010111011.mcfunction │ │ │ │ │ ├── 10101111.mcfunction │ │ │ │ │ ├── 101011110.mcfunction │ │ │ │ │ ├── 1010111100.mcfunction │ │ │ │ │ ├── 1010111101.mcfunction │ │ │ │ │ ├── 101011111.mcfunction │ │ │ │ │ ├── 1010111110.mcfunction │ │ │ │ │ ├── 1010111111.mcfunction │ │ │ │ │ ├── 1011.mcfunction │ │ │ │ │ ├── 10110.mcfunction │ │ │ │ │ ├── 101100.mcfunction │ │ │ │ │ ├── 1011000.mcfunction │ │ │ │ │ ├── 10110000.mcfunction │ │ │ │ │ ├── 101100000.mcfunction │ │ │ │ │ ├── 101100001.mcfunction │ │ │ │ │ ├── 1011000010.mcfunction │ │ │ │ │ ├── 1011000011.mcfunction │ │ │ │ │ ├── 10110001.mcfunction │ │ │ │ │ ├── 101100010.mcfunction │ │ │ │ │ ├── 1011000100.mcfunction │ │ │ │ │ ├── 1011000101.mcfunction │ │ │ │ │ ├── 101100011.mcfunction │ │ │ │ │ ├── 1011000110.mcfunction │ │ │ │ │ ├── 1011000111.mcfunction │ │ │ │ │ ├── 1011001.mcfunction │ │ │ │ │ ├── 10110010.mcfunction │ │ │ │ │ ├── 101100100.mcfunction │ │ │ │ │ ├── 1011001000.mcfunction │ │ │ │ │ ├── 1011001001.mcfunction │ │ │ │ │ ├── 101100101.mcfunction │ │ │ │ │ ├── 1011001010.mcfunction │ │ │ │ │ ├── 1011001011.mcfunction │ │ │ │ │ ├── 10110011.mcfunction │ │ │ │ │ ├── 101100110.mcfunction │ │ │ │ │ ├── 1011001100.mcfunction │ │ │ │ │ ├── 1011001101.mcfunction │ │ │ │ │ ├── 101100111.mcfunction │ │ │ │ │ ├── 1011001110.mcfunction │ │ │ │ │ ├── 1011001111.mcfunction │ │ │ │ │ ├── 101101.mcfunction │ │ │ │ │ ├── 1011010.mcfunction │ │ │ │ │ ├── 10110100.mcfunction │ │ │ │ │ ├── 101101000.mcfunction │ │ │ │ │ ├── 1011010000.mcfunction │ │ │ │ │ ├── 1011010001.mcfunction │ │ │ │ │ ├── 101101001.mcfunction │ │ │ │ │ ├── 1011010010.mcfunction │ │ │ │ │ ├── 1011010011.mcfunction │ │ │ │ │ ├── 10110101.mcfunction │ │ │ │ │ ├── 101101010.mcfunction │ │ │ │ │ ├── 1011010100.mcfunction │ │ │ │ │ ├── 1011010101.mcfunction │ │ │ │ │ ├── 101101011.mcfunction │ │ │ │ │ ├── 1011010110.mcfunction │ │ │ │ │ ├── 1011010111.mcfunction │ │ │ │ │ ├── 1011011.mcfunction │ │ │ │ │ ├── 10110110.mcfunction │ │ │ │ │ ├── 101101100.mcfunction │ │ │ │ │ ├── 1011011000.mcfunction │ │ │ │ │ ├── 1011011001.mcfunction │ │ │ │ │ ├── 101101101.mcfunction │ │ │ │ │ ├── 1011011010.mcfunction │ │ │ │ │ ├── 1011011011.mcfunction │ │ │ │ │ ├── 10110111.mcfunction │ │ │ │ │ ├── 101101110.mcfunction │ │ │ │ │ ├── 1011011100.mcfunction │ │ │ │ │ ├── 1011011101.mcfunction │ │ │ │ │ ├── 101101111.mcfunction │ │ │ │ │ ├── 1011011110.mcfunction │ │ │ │ │ ├── 1011011111.mcfunction │ │ │ │ │ ├── 10111.mcfunction │ │ │ │ │ ├── 101110.mcfunction │ │ │ │ │ ├── 1011100.mcfunction │ │ │ │ │ ├── 10111000.mcfunction │ │ │ │ │ ├── 101110000.mcfunction │ │ │ │ │ ├── 1011100000.mcfunction │ │ │ │ │ ├── 1011100001.mcfunction │ │ │ │ │ ├── 101110001.mcfunction │ │ │ │ │ ├── 1011100010.mcfunction │ │ │ │ │ ├── 1011100011.mcfunction │ │ │ │ │ ├── 10111001.mcfunction │ │ │ │ │ ├── 101110010.mcfunction │ │ │ │ │ ├── 1011100100.mcfunction │ │ │ │ │ ├── 1011100101.mcfunction │ │ │ │ │ ├── 101110011.mcfunction │ │ │ │ │ ├── 1011100110.mcfunction │ │ │ │ │ ├── 1011100111.mcfunction │ │ │ │ │ ├── 1011101.mcfunction │ │ │ │ │ ├── 10111010.mcfunction │ │ │ │ │ ├── 101110100.mcfunction │ │ │ │ │ ├── 1011101000.mcfunction │ │ │ │ │ ├── 1011101001.mcfunction │ │ │ │ │ ├── 101110101.mcfunction │ │ │ │ │ ├── 1011101010.mcfunction │ │ │ │ │ ├── 1011101011.mcfunction │ │ │ │ │ ├── 10111011.mcfunction │ │ │ │ │ ├── 101110110.mcfunction │ │ │ │ │ ├── 1011101100.mcfunction │ │ │ │ │ ├── 1011101101.mcfunction │ │ │ │ │ ├── 101110111.mcfunction │ │ │ │ │ ├── 1011101110.mcfunction │ │ │ │ │ ├── 1011101111.mcfunction │ │ │ │ │ ├── 101111.mcfunction │ │ │ │ │ ├── 1011110.mcfunction │ │ │ │ │ ├── 10111100.mcfunction │ │ │ │ │ ├── 101111000.mcfunction │ │ │ │ │ ├── 1011110000.mcfunction │ │ │ │ │ ├── 1011110001.mcfunction │ │ │ │ │ ├── 101111001.mcfunction │ │ │ │ │ ├── 1011110010.mcfunction │ │ │ │ │ ├── 1011110011.mcfunction │ │ │ │ │ ├── 10111101.mcfunction │ │ │ │ │ ├── 101111010.mcfunction │ │ │ │ │ ├── 1011110100.mcfunction │ │ │ │ │ ├── 1011110101.mcfunction │ │ │ │ │ ├── 101111011.mcfunction │ │ │ │ │ ├── 1011110110.mcfunction │ │ │ │ │ ├── 1011110111.mcfunction │ │ │ │ │ ├── 1011111.mcfunction │ │ │ │ │ ├── 10111110.mcfunction │ │ │ │ │ ├── 101111100.mcfunction │ │ │ │ │ ├── 1011111000.mcfunction │ │ │ │ │ ├── 1011111001.mcfunction │ │ │ │ │ ├── 101111101.mcfunction │ │ │ │ │ ├── 1011111010.mcfunction │ │ │ │ │ ├── 1011111011.mcfunction │ │ │ │ │ ├── 10111111.mcfunction │ │ │ │ │ ├── 101111110.mcfunction │ │ │ │ │ ├── 1011111100.mcfunction │ │ │ │ │ ├── 1011111101.mcfunction │ │ │ │ │ ├── 101111111.mcfunction │ │ │ │ │ ├── 1011111110.mcfunction │ │ │ │ │ ├── 1011111111.mcfunction │ │ │ │ │ ├── 11.mcfunction │ │ │ │ │ ├── 110.mcfunction │ │ │ │ │ ├── 1100.mcfunction │ │ │ │ │ ├── 11000.mcfunction │ │ │ │ │ ├── 110000.mcfunction │ │ │ │ │ ├── 1100000.mcfunction │ │ │ │ │ ├── 11000000.mcfunction │ │ │ │ │ ├── 110000000.mcfunction │ │ │ │ │ ├── 110000001.mcfunction │ │ │ │ │ ├── 1100000010.mcfunction │ │ │ │ │ ├── 1100000011.mcfunction │ │ │ │ │ ├── 11000001.mcfunction │ │ │ │ │ ├── 110000010.mcfunction │ │ │ │ │ ├── 1100000100.mcfunction │ │ │ │ │ ├── 1100000101.mcfunction │ │ │ │ │ ├── 110000011.mcfunction │ │ │ │ │ ├── 1100000110.mcfunction │ │ │ │ │ ├── 1100000111.mcfunction │ │ │ │ │ ├── 1100001.mcfunction │ │ │ │ │ ├── 11000010.mcfunction │ │ │ │ │ ├── 110000100.mcfunction │ │ │ │ │ ├── 1100001000.mcfunction │ │ │ │ │ ├── 1100001001.mcfunction │ │ │ │ │ ├── 110000101.mcfunction │ │ │ │ │ ├── 1100001010.mcfunction │ │ │ │ │ ├── 1100001011.mcfunction │ │ │ │ │ ├── 11000011.mcfunction │ │ │ │ │ ├── 110000110.mcfunction │ │ │ │ │ ├── 1100001100.mcfunction │ │ │ │ │ ├── 1100001101.mcfunction │ │ │ │ │ ├── 110000111.mcfunction │ │ │ │ │ ├── 1100001110.mcfunction │ │ │ │ │ ├── 1100001111.mcfunction │ │ │ │ │ ├── 110001.mcfunction │ │ │ │ │ ├── 1100010.mcfunction │ │ │ │ │ ├── 11000100.mcfunction │ │ │ │ │ ├── 110001000.mcfunction │ │ │ │ │ ├── 1100010000.mcfunction │ │ │ │ │ ├── 1100010001.mcfunction │ │ │ │ │ ├── 110001001.mcfunction │ │ │ │ │ ├── 1100010010.mcfunction │ │ │ │ │ ├── 1100010011.mcfunction │ │ │ │ │ ├── 11000101.mcfunction │ │ │ │ │ ├── 110001010.mcfunction │ │ │ │ │ ├── 1100010100.mcfunction │ │ │ │ │ ├── 1100010101.mcfunction │ │ │ │ │ ├── 110001011.mcfunction │ │ │ │ │ ├── 1100010110.mcfunction │ │ │ │ │ ├── 1100010111.mcfunction │ │ │ │ │ ├── 1100011.mcfunction │ │ │ │ │ ├── 11000110.mcfunction │ │ │ │ │ ├── 110001100.mcfunction │ │ │ │ │ ├── 1100011000.mcfunction │ │ │ │ │ ├── 1100011001.mcfunction │ │ │ │ │ ├── 110001101.mcfunction │ │ │ │ │ ├── 1100011010.mcfunction │ │ │ │ │ ├── 1100011011.mcfunction │ │ │ │ │ ├── 11000111.mcfunction │ │ │ │ │ ├── 110001110.mcfunction │ │ │ │ │ ├── 1100011100.mcfunction │ │ │ │ │ ├── 1100011101.mcfunction │ │ │ │ │ ├── 110001111.mcfunction │ │ │ │ │ ├── 1100011110.mcfunction │ │ │ │ │ ├── 1100011111.mcfunction │ │ │ │ │ ├── 11001.mcfunction │ │ │ │ │ ├── 110010.mcfunction │ │ │ │ │ ├── 1100100.mcfunction │ │ │ │ │ ├── 11001000.mcfunction │ │ │ │ │ ├── 110010000.mcfunction │ │ │ │ │ ├── 110010001.mcfunction │ │ │ │ │ ├── 1100100010.mcfunction │ │ │ │ │ ├── 1100100011.mcfunction │ │ │ │ │ ├── 11001001.mcfunction │ │ │ │ │ ├── 110010010.mcfunction │ │ │ │ │ ├── 1100100100.mcfunction │ │ │ │ │ ├── 1100100101.mcfunction │ │ │ │ │ ├── 110010011.mcfunction │ │ │ │ │ ├── 1100100110.mcfunction │ │ │ │ │ ├── 1100100111.mcfunction │ │ │ │ │ ├── 1100101.mcfunction │ │ │ │ │ ├── 11001010.mcfunction │ │ │ │ │ ├── 110010100.mcfunction │ │ │ │ │ ├── 1100101000.mcfunction │ │ │ │ │ ├── 1100101001.mcfunction │ │ │ │ │ ├── 110010101.mcfunction │ │ │ │ │ ├── 1100101010.mcfunction │ │ │ │ │ ├── 1100101011.mcfunction │ │ │ │ │ ├── 11001011.mcfunction │ │ │ │ │ ├── 110010110.mcfunction │ │ │ │ │ ├── 1100101100.mcfunction │ │ │ │ │ ├── 1100101101.mcfunction │ │ │ │ │ ├── 110010111.mcfunction │ │ │ │ │ ├── 1100101110.mcfunction │ │ │ │ │ ├── 1100101111.mcfunction │ │ │ │ │ ├── 110011.mcfunction │ │ │ │ │ ├── 1100110.mcfunction │ │ │ │ │ ├── 11001100.mcfunction │ │ │ │ │ ├── 110011000.mcfunction │ │ │ │ │ ├── 1100110000.mcfunction │ │ │ │ │ ├── 1100110001.mcfunction │ │ │ │ │ ├── 110011001.mcfunction │ │ │ │ │ ├── 1100110010.mcfunction │ │ │ │ │ ├── 1100110011.mcfunction │ │ │ │ │ ├── 11001101.mcfunction │ │ │ │ │ ├── 110011010.mcfunction │ │ │ │ │ ├── 1100110100.mcfunction │ │ │ │ │ ├── 1100110101.mcfunction │ │ │ │ │ ├── 110011011.mcfunction │ │ │ │ │ ├── 1100110110.mcfunction │ │ │ │ │ ├── 1100110111.mcfunction │ │ │ │ │ ├── 1100111.mcfunction │ │ │ │ │ ├── 11001110.mcfunction │ │ │ │ │ ├── 110011100.mcfunction │ │ │ │ │ ├── 1100111000.mcfunction │ │ │ │ │ ├── 1100111001.mcfunction │ │ │ │ │ ├── 110011101.mcfunction │ │ │ │ │ ├── 1100111010.mcfunction │ │ │ │ │ ├── 1100111011.mcfunction │ │ │ │ │ ├── 11001111.mcfunction │ │ │ │ │ ├── 110011110.mcfunction │ │ │ │ │ ├── 1100111100.mcfunction │ │ │ │ │ ├── 1100111101.mcfunction │ │ │ │ │ ├── 110011111.mcfunction │ │ │ │ │ ├── 1100111110.mcfunction │ │ │ │ │ ├── 1100111111.mcfunction │ │ │ │ │ ├── 1101.mcfunction │ │ │ │ │ ├── 11010.mcfunction │ │ │ │ │ ├── 110100.mcfunction │ │ │ │ │ ├── 1101000.mcfunction │ │ │ │ │ ├── 11010000.mcfunction │ │ │ │ │ ├── 110100000.mcfunction │ │ │ │ │ ├── 110100001.mcfunction │ │ │ │ │ ├── 1101000010.mcfunction │ │ │ │ │ ├── 1101000011.mcfunction │ │ │ │ │ ├── 11010001.mcfunction │ │ │ │ │ ├── 110100010.mcfunction │ │ │ │ │ ├── 1101000100.mcfunction │ │ │ │ │ ├── 1101000101.mcfunction │ │ │ │ │ ├── 110100011.mcfunction │ │ │ │ │ ├── 1101000110.mcfunction │ │ │ │ │ ├── 1101000111.mcfunction │ │ │ │ │ ├── 1101001.mcfunction │ │ │ │ │ ├── 11010010.mcfunction │ │ │ │ │ ├── 110100100.mcfunction │ │ │ │ │ ├── 1101001000.mcfunction │ │ │ │ │ ├── 1101001001.mcfunction │ │ │ │ │ ├── 110100101.mcfunction │ │ │ │ │ ├── 1101001010.mcfunction │ │ │ │ │ ├── 1101001011.mcfunction │ │ │ │ │ ├── 11010011.mcfunction │ │ │ │ │ ├── 110100110.mcfunction │ │ │ │ │ ├── 1101001100.mcfunction │ │ │ │ │ ├── 1101001101.mcfunction │ │ │ │ │ ├── 110100111.mcfunction │ │ │ │ │ ├── 1101001110.mcfunction │ │ │ │ │ ├── 1101001111.mcfunction │ │ │ │ │ ├── 110101.mcfunction │ │ │ │ │ ├── 1101010.mcfunction │ │ │ │ │ ├── 11010100.mcfunction │ │ │ │ │ ├── 110101000.mcfunction │ │ │ │ │ ├── 1101010000.mcfunction │ │ │ │ │ ├── 1101010001.mcfunction │ │ │ │ │ ├── 110101001.mcfunction │ │ │ │ │ ├── 1101010010.mcfunction │ │ │ │ │ ├── 1101010011.mcfunction │ │ │ │ │ ├── 11010101.mcfunction │ │ │ │ │ ├── 110101010.mcfunction │ │ │ │ │ ├── 1101010100.mcfunction │ │ │ │ │ ├── 1101010101.mcfunction │ │ │ │ │ ├── 110101011.mcfunction │ │ │ │ │ ├── 1101010110.mcfunction │ │ │ │ │ ├── 1101010111.mcfunction │ │ │ │ │ ├── 1101011.mcfunction │ │ │ │ │ ├── 11010110.mcfunction │ │ │ │ │ ├── 110101100.mcfunction │ │ │ │ │ ├── 1101011000.mcfunction │ │ │ │ │ ├── 1101011001.mcfunction │ │ │ │ │ ├── 110101101.mcfunction │ │ │ │ │ ├── 1101011010.mcfunction │ │ │ │ │ ├── 1101011011.mcfunction │ │ │ │ │ ├── 11010111.mcfunction │ │ │ │ │ ├── 110101110.mcfunction │ │ │ │ │ ├── 1101011100.mcfunction │ │ │ │ │ ├── 1101011101.mcfunction │ │ │ │ │ ├── 110101111.mcfunction │ │ │ │ │ ├── 1101011110.mcfunction │ │ │ │ │ ├── 1101011111.mcfunction │ │ │ │ │ ├── 11011.mcfunction │ │ │ │ │ ├── 110110.mcfunction │ │ │ │ │ ├── 1101100.mcfunction │ │ │ │ │ ├── 11011000.mcfunction │ │ │ │ │ ├── 110110000.mcfunction │ │ │ │ │ ├── 1101100000.mcfunction │ │ │ │ │ ├── 1101100001.mcfunction │ │ │ │ │ ├── 110110001.mcfunction │ │ │ │ │ ├── 1101100010.mcfunction │ │ │ │ │ ├── 1101100011.mcfunction │ │ │ │ │ ├── 11011001.mcfunction │ │ │ │ │ ├── 110110010.mcfunction │ │ │ │ │ ├── 1101100100.mcfunction │ │ │ │ │ ├── 1101100101.mcfunction │ │ │ │ │ ├── 110110011.mcfunction │ │ │ │ │ ├── 1101100110.mcfunction │ │ │ │ │ ├── 1101100111.mcfunction │ │ │ │ │ ├── 1101101.mcfunction │ │ │ │ │ ├── 11011010.mcfunction │ │ │ │ │ ├── 110110100.mcfunction │ │ │ │ │ ├── 1101101000.mcfunction │ │ │ │ │ ├── 1101101001.mcfunction │ │ │ │ │ ├── 110110101.mcfunction │ │ │ │ │ ├── 1101101010.mcfunction │ │ │ │ │ ├── 1101101011.mcfunction │ │ │ │ │ ├── 11011011.mcfunction │ │ │ │ │ ├── 110110110.mcfunction │ │ │ │ │ ├── 1101101100.mcfunction │ │ │ │ │ ├── 1101101101.mcfunction │ │ │ │ │ ├── 110110111.mcfunction │ │ │ │ │ ├── 1101101110.mcfunction │ │ │ │ │ ├── 1101101111.mcfunction │ │ │ │ │ ├── 110111.mcfunction │ │ │ │ │ ├── 1101110.mcfunction │ │ │ │ │ ├── 11011100.mcfunction │ │ │ │ │ ├── 110111000.mcfunction │ │ │ │ │ ├── 1101110000.mcfunction │ │ │ │ │ ├── 1101110001.mcfunction │ │ │ │ │ ├── 110111001.mcfunction │ │ │ │ │ ├── 1101110010.mcfunction │ │ │ │ │ ├── 1101110011.mcfunction │ │ │ │ │ ├── 11011101.mcfunction │ │ │ │ │ ├── 110111010.mcfunction │ │ │ │ │ ├── 1101110100.mcfunction │ │ │ │ │ ├── 1101110101.mcfunction │ │ │ │ │ ├── 110111011.mcfunction │ │ │ │ │ ├── 1101110110.mcfunction │ │ │ │ │ ├── 1101110111.mcfunction │ │ │ │ │ ├── 1101111.mcfunction │ │ │ │ │ ├── 11011110.mcfunction │ │ │ │ │ ├── 110111100.mcfunction │ │ │ │ │ ├── 1101111000.mcfunction │ │ │ │ │ ├── 1101111001.mcfunction │ │ │ │ │ ├── 110111101.mcfunction │ │ │ │ │ ├── 1101111010.mcfunction │ │ │ │ │ ├── 1101111011.mcfunction │ │ │ │ │ ├── 11011111.mcfunction │ │ │ │ │ ├── 110111110.mcfunction │ │ │ │ │ ├── 1101111100.mcfunction │ │ │ │ │ ├── 1101111101.mcfunction │ │ │ │ │ ├── 110111111.mcfunction │ │ │ │ │ ├── 1101111110.mcfunction │ │ │ │ │ ├── 1101111111.mcfunction │ │ │ │ │ ├── 111.mcfunction │ │ │ │ │ ├── 1110.mcfunction │ │ │ │ │ ├── 11100.mcfunction │ │ │ │ │ ├── 111000.mcfunction │ │ │ │ │ ├── 1110000.mcfunction │ │ │ │ │ ├── 11100000.mcfunction │ │ │ │ │ ├── 111000000.mcfunction │ │ │ │ │ ├── 111000001.mcfunction │ │ │ │ │ ├── 1110000010.mcfunction │ │ │ │ │ ├── 1110000011.mcfunction │ │ │ │ │ ├── 11100001.mcfunction │ │ │ │ │ ├── 111000010.mcfunction │ │ │ │ │ ├── 1110000100.mcfunction │ │ │ │ │ ├── 1110000101.mcfunction │ │ │ │ │ ├── 111000011.mcfunction │ │ │ │ │ ├── 1110000110.mcfunction │ │ │ │ │ ├── 1110000111.mcfunction │ │ │ │ │ ├── 1110001.mcfunction │ │ │ │ │ ├── 11100010.mcfunction │ │ │ │ │ ├── 111000100.mcfunction │ │ │ │ │ ├── 1110001000.mcfunction │ │ │ │ │ ├── 1110001001.mcfunction │ │ │ │ │ ├── 111000101.mcfunction │ │ │ │ │ ├── 1110001010.mcfunction │ │ │ │ │ ├── 1110001011.mcfunction │ │ │ │ │ ├── 11100011.mcfunction │ │ │ │ │ ├── 111000110.mcfunction │ │ │ │ │ ├── 1110001100.mcfunction │ │ │ │ │ ├── 1110001101.mcfunction │ │ │ │ │ ├── 111000111.mcfunction │ │ │ │ │ ├── 1110001110.mcfunction │ │ │ │ │ ├── 1110001111.mcfunction │ │ │ │ │ ├── 111001.mcfunction │ │ │ │ │ ├── 1110010.mcfunction │ │ │ │ │ ├── 11100100.mcfunction │ │ │ │ │ ├── 111001000.mcfunction │ │ │ │ │ ├── 1110010000.mcfunction │ │ │ │ │ ├── 1110010001.mcfunction │ │ │ │ │ ├── 111001001.mcfunction │ │ │ │ │ ├── 1110010010.mcfunction │ │ │ │ │ ├── 1110010011.mcfunction │ │ │ │ │ ├── 11100101.mcfunction │ │ │ │ │ ├── 111001010.mcfunction │ │ │ │ │ ├── 1110010100.mcfunction │ │ │ │ │ ├── 1110010101.mcfunction │ │ │ │ │ ├── 111001011.mcfunction │ │ │ │ │ ├── 1110010110.mcfunction │ │ │ │ │ ├── 1110010111.mcfunction │ │ │ │ │ ├── 1110011.mcfunction │ │ │ │ │ ├── 11100110.mcfunction │ │ │ │ │ ├── 111001100.mcfunction │ │ │ │ │ ├── 1110011000.mcfunction │ │ │ │ │ ├── 1110011001.mcfunction │ │ │ │ │ ├── 111001101.mcfunction │ │ │ │ │ ├── 1110011010.mcfunction │ │ │ │ │ ├── 1110011011.mcfunction │ │ │ │ │ ├── 11100111.mcfunction │ │ │ │ │ ├── 111001110.mcfunction │ │ │ │ │ ├── 1110011100.mcfunction │ │ │ │ │ ├── 1110011101.mcfunction │ │ │ │ │ ├── 111001111.mcfunction │ │ │ │ │ ├── 1110011110.mcfunction │ │ │ │ │ ├── 1110011111.mcfunction │ │ │ │ │ ├── 11101.mcfunction │ │ │ │ │ ├── 111010.mcfunction │ │ │ │ │ ├── 1110100.mcfunction │ │ │ │ │ ├── 11101000.mcfunction │ │ │ │ │ ├── 111010000.mcfunction │ │ │ │ │ ├── 111010001.mcfunction │ │ │ │ │ ├── 1110100010.mcfunction │ │ │ │ │ ├── 1110100011.mcfunction │ │ │ │ │ ├── 11101001.mcfunction │ │ │ │ │ ├── 111010010.mcfunction │ │ │ │ │ ├── 1110100100.mcfunction │ │ │ │ │ ├── 1110100101.mcfunction │ │ │ │ │ ├── 111010011.mcfunction │ │ │ │ │ ├── 1110100110.mcfunction │ │ │ │ │ ├── 1110100111.mcfunction │ │ │ │ │ ├── 1110101.mcfunction │ │ │ │ │ ├── 11101010.mcfunction │ │ │ │ │ ├── 111010100.mcfunction │ │ │ │ │ ├── 1110101000.mcfunction │ │ │ │ │ ├── 1110101001.mcfunction │ │ │ │ │ ├── 111010101.mcfunction │ │ │ │ │ ├── 1110101010.mcfunction │ │ │ │ │ ├── 1110101011.mcfunction │ │ │ │ │ ├── 11101011.mcfunction │ │ │ │ │ ├── 111010110.mcfunction │ │ │ │ │ ├── 1110101100.mcfunction │ │ │ │ │ ├── 1110101101.mcfunction │ │ │ │ │ ├── 111010111.mcfunction │ │ │ │ │ ├── 1110101110.mcfunction │ │ │ │ │ ├── 1110101111.mcfunction │ │ │ │ │ ├── 111011.mcfunction │ │ │ │ │ ├── 1110110.mcfunction │ │ │ │ │ ├── 11101100.mcfunction │ │ │ │ │ ├── 111011000.mcfunction │ │ │ │ │ ├── 1110110000.mcfunction │ │ │ │ │ ├── 1110110001.mcfunction │ │ │ │ │ ├── 111011001.mcfunction │ │ │ │ │ ├── 1110110010.mcfunction │ │ │ │ │ ├── 1110110011.mcfunction │ │ │ │ │ ├── 11101101.mcfunction │ │ │ │ │ ├── 111011010.mcfunction │ │ │ │ │ ├── 1110110100.mcfunction │ │ │ │ │ ├── 1110110101.mcfunction │ │ │ │ │ ├── 111011011.mcfunction │ │ │ │ │ ├── 1110110110.mcfunction │ │ │ │ │ ├── 1110110111.mcfunction │ │ │ │ │ ├── 1110111.mcfunction │ │ │ │ │ ├── 11101110.mcfunction │ │ │ │ │ ├── 111011100.mcfunction │ │ │ │ │ ├── 1110111000.mcfunction │ │ │ │ │ ├── 1110111001.mcfunction │ │ │ │ │ ├── 111011101.mcfunction │ │ │ │ │ ├── 1110111010.mcfunction │ │ │ │ │ ├── 1110111011.mcfunction │ │ │ │ │ ├── 11101111.mcfunction │ │ │ │ │ ├── 111011110.mcfunction │ │ │ │ │ ├── 1110111100.mcfunction │ │ │ │ │ ├── 1110111101.mcfunction │ │ │ │ │ ├── 111011111.mcfunction │ │ │ │ │ ├── 1110111110.mcfunction │ │ │ │ │ ├── 1110111111.mcfunction │ │ │ │ │ ├── 1111.mcfunction │ │ │ │ │ ├── 11110.mcfunction │ │ │ │ │ ├── 111100.mcfunction │ │ │ │ │ ├── 1111000.mcfunction │ │ │ │ │ ├── 11110000.mcfunction │ │ │ │ │ ├── 111100000.mcfunction │ │ │ │ │ ├── 111100001.mcfunction │ │ │ │ │ ├── 1111000010.mcfunction │ │ │ │ │ ├── 1111000011.mcfunction │ │ │ │ │ ├── 11110001.mcfunction │ │ │ │ │ ├── 111100010.mcfunction │ │ │ │ │ ├── 1111000100.mcfunction │ │ │ │ │ ├── 1111000101.mcfunction │ │ │ │ │ ├── 111100011.mcfunction │ │ │ │ │ ├── 1111000110.mcfunction │ │ │ │ │ ├── 1111000111.mcfunction │ │ │ │ │ ├── 1111001.mcfunction │ │ │ │ │ ├── 11110010.mcfunction │ │ │ │ │ ├── 111100100.mcfunction │ │ │ │ │ ├── 1111001000.mcfunction │ │ │ │ │ ├── 1111001001.mcfunction │ │ │ │ │ ├── 111100101.mcfunction │ │ │ │ │ ├── 1111001010.mcfunction │ │ │ │ │ ├── 1111001011.mcfunction │ │ │ │ │ ├── 11110011.mcfunction │ │ │ │ │ ├── 111100110.mcfunction │ │ │ │ │ ├── 1111001100.mcfunction │ │ │ │ │ ├── 1111001101.mcfunction │ │ │ │ │ ├── 111100111.mcfunction │ │ │ │ │ ├── 1111001110.mcfunction │ │ │ │ │ ├── 1111001111.mcfunction │ │ │ │ │ ├── 111101.mcfunction │ │ │ │ │ ├── 1111010.mcfunction │ │ │ │ │ ├── 11110100.mcfunction │ │ │ │ │ ├── 111101000.mcfunction │ │ │ │ │ ├── 1111010000.mcfunction │ │ │ │ │ ├── 1111010001.mcfunction │ │ │ │ │ ├── 111101001.mcfunction │ │ │ │ │ ├── 1111010010.mcfunction │ │ │ │ │ ├── 1111010011.mcfunction │ │ │ │ │ ├── 11110101.mcfunction │ │ │ │ │ ├── 111101010.mcfunction │ │ │ │ │ ├── 1111010100.mcfunction │ │ │ │ │ ├── 1111010101.mcfunction │ │ │ │ │ ├── 111101011.mcfunction │ │ │ │ │ ├── 1111010110.mcfunction │ │ │ │ │ ├── 1111010111.mcfunction │ │ │ │ │ ├── 1111011.mcfunction │ │ │ │ │ ├── 11110110.mcfunction │ │ │ │ │ ├── 111101100.mcfunction │ │ │ │ │ ├── 1111011000.mcfunction │ │ │ │ │ ├── 1111011001.mcfunction │ │ │ │ │ ├── 111101101.mcfunction │ │ │ │ │ ├── 1111011010.mcfunction │ │ │ │ │ ├── 1111011011.mcfunction │ │ │ │ │ ├── 11110111.mcfunction │ │ │ │ │ ├── 111101110.mcfunction │ │ │ │ │ ├── 1111011100.mcfunction │ │ │ │ │ ├── 1111011101.mcfunction │ │ │ │ │ ├── 111101111.mcfunction │ │ │ │ │ ├── 1111011110.mcfunction │ │ │ │ │ ├── 1111011111.mcfunction │ │ │ │ │ ├── 11111.mcfunction │ │ │ │ │ ├── 111110.mcfunction │ │ │ │ │ ├── 1111100.mcfunction │ │ │ │ │ ├── 11111000.mcfunction │ │ │ │ │ ├── 111110000.mcfunction │ │ │ │ │ ├── 1111100000.mcfunction │ │ │ │ │ ├── 1111100001.mcfunction │ │ │ │ │ ├── 111110001.mcfunction │ │ │ │ │ ├── 1111100010.mcfunction │ │ │ │ │ ├── 1111100011.mcfunction │ │ │ │ │ ├── 11111001.mcfunction │ │ │ │ │ ├── 111110010.mcfunction │ │ │ │ │ ├── 1111100100.mcfunction │ │ │ │ │ ├── 1111100101.mcfunction │ │ │ │ │ ├── 111110011.mcfunction │ │ │ │ │ ├── 1111100110.mcfunction │ │ │ │ │ ├── 1111100111.mcfunction │ │ │ │ │ ├── 1111101.mcfunction │ │ │ │ │ ├── 11111010.mcfunction │ │ │ │ │ ├── 111110100.mcfunction │ │ │ │ │ ├── 1111101000.mcfunction │ │ │ │ │ ├── 1111101001.mcfunction │ │ │ │ │ ├── 111110101.mcfunction │ │ │ │ │ ├── 1111101010.mcfunction │ │ │ │ │ ├── 1111101011.mcfunction │ │ │ │ │ ├── 11111011.mcfunction │ │ │ │ │ ├── 111110110.mcfunction │ │ │ │ │ ├── 1111101100.mcfunction │ │ │ │ │ ├── 1111101101.mcfunction │ │ │ │ │ ├── 111110111.mcfunction │ │ │ │ │ ├── 1111101110.mcfunction │ │ │ │ │ ├── 1111101111.mcfunction │ │ │ │ │ ├── 111111.mcfunction │ │ │ │ │ ├── 1111110.mcfunction │ │ │ │ │ ├── 11111100.mcfunction │ │ │ │ │ ├── 111111000.mcfunction │ │ │ │ │ ├── 1111110000.mcfunction │ │ │ │ │ ├── 1111110001.mcfunction │ │ │ │ │ ├── 111111001.mcfunction │ │ │ │ │ ├── 1111110010.mcfunction │ │ │ │ │ ├── 1111110011.mcfunction │ │ │ │ │ ├── 11111101.mcfunction │ │ │ │ │ ├── 111111010.mcfunction │ │ │ │ │ ├── 1111110100.mcfunction │ │ │ │ │ ├── 1111110101.mcfunction │ │ │ │ │ ├── 111111011.mcfunction │ │ │ │ │ ├── 1111110110.mcfunction │ │ │ │ │ ├── 1111110111.mcfunction │ │ │ │ │ ├── 1111111.mcfunction │ │ │ │ │ ├── 11111110.mcfunction │ │ │ │ │ ├── 111111100.mcfunction │ │ │ │ │ ├── 1111111000.mcfunction │ │ │ │ │ ├── 1111111001.mcfunction │ │ │ │ │ ├── 111111101.mcfunction │ │ │ │ │ ├── 1111111010.mcfunction │ │ │ │ │ ├── 1111111011.mcfunction │ │ │ │ │ ├── 11111111.mcfunction │ │ │ │ │ ├── 111111110.mcfunction │ │ │ │ │ ├── 1111111100.mcfunction │ │ │ │ │ ├── 1111111101.mcfunction │ │ │ │ │ ├── 111111111.mcfunction │ │ │ │ │ ├── 1111111110.mcfunction │ │ │ │ │ ├── 1111111111.mcfunction │ │ │ │ │ └── init.mcfunction │ │ │ │ └── states │ │ │ │ │ ├── age.mcfunction │ │ │ │ │ ├── attached.mcfunction │ │ │ │ │ ├── attachment.mcfunction │ │ │ │ │ ├── axis.mcfunction │ │ │ │ │ ├── berries.mcfunction │ │ │ │ │ ├── bites.mcfunction │ │ │ │ │ ├── bloom.mcfunction │ │ │ │ │ ├── bottom.mcfunction │ │ │ │ │ ├── can_summon.mcfunction │ │ │ │ │ ├── charges.mcfunction │ │ │ │ │ ├── conditional.mcfunction │ │ │ │ │ ├── delay.mcfunction │ │ │ │ │ ├── disarmed.mcfunction │ │ │ │ │ ├── distance.mcfunction │ │ │ │ │ ├── down.mcfunction │ │ │ │ │ ├── drag.mcfunction │ │ │ │ │ ├── east.mcfunction │ │ │ │ │ ├── eggs.mcfunction │ │ │ │ │ ├── enabled.mcfunction │ │ │ │ │ ├── extended.mcfunction │ │ │ │ │ ├── eye.mcfunction │ │ │ │ │ ├── face.mcfunction │ │ │ │ │ ├── facing.mcfunction │ │ │ │ │ ├── half.mcfunction │ │ │ │ │ ├── hanging.mcfunction │ │ │ │ │ ├── has_book.mcfunction │ │ │ │ │ ├── has_bottle_0.mcfunction │ │ │ │ │ ├── has_bottle_1.mcfunction │ │ │ │ │ ├── has_bottle_2.mcfunction │ │ │ │ │ ├── has_record.mcfunction │ │ │ │ │ ├── hatch.mcfunction │ │ │ │ │ ├── hinge.mcfunction │ │ │ │ │ ├── honey_level.mcfunction │ │ │ │ │ ├── in_wall.mcfunction │ │ │ │ │ ├── init.mcfunction │ │ │ │ │ ├── instrument.mcfunction │ │ │ │ │ ├── layers.mcfunction │ │ │ │ │ ├── leaves.mcfunction │ │ │ │ │ ├── level.mcfunction │ │ │ │ │ ├── lit.mcfunction │ │ │ │ │ ├── locked.mcfunction │ │ │ │ │ ├── mode.mcfunction │ │ │ │ │ ├── moisture.mcfunction │ │ │ │ │ ├── north.mcfunction │ │ │ │ │ ├── note.mcfunction │ │ │ │ │ ├── occupied.mcfunction │ │ │ │ │ ├── open.mcfunction │ │ │ │ │ ├── orientation.mcfunction │ │ │ │ │ ├── part.mcfunction │ │ │ │ │ ├── persistent.mcfunction │ │ │ │ │ ├── pickles.mcfunction │ │ │ │ │ ├── power.mcfunction │ │ │ │ │ ├── powered.mcfunction │ │ │ │ │ ├── rotation.mcfunction │ │ │ │ │ ├── sculk_sensor_phase.mcfunction │ │ │ │ │ ├── shape.mcfunction │ │ │ │ │ ├── shrieking.mcfunction │ │ │ │ │ ├── signal_fire.mcfunction │ │ │ │ │ ├── slot_0_occupied.mcfunction │ │ │ │ │ ├── slot_1_occupied.mcfunction │ │ │ │ │ ├── slot_2_occupied.mcfunction │ │ │ │ │ ├── slot_3_occupied.mcfunction │ │ │ │ │ ├── slot_4_occupied.mcfunction │ │ │ │ │ ├── slot_5_occupied.mcfunction │ │ │ │ │ ├── snowy.mcfunction │ │ │ │ │ ├── south.mcfunction │ │ │ │ │ ├── stage.mcfunction │ │ │ │ │ ├── thickness.mcfunction │ │ │ │ │ ├── tilt.mcfunction │ │ │ │ │ ├── triggered.mcfunction │ │ │ │ │ ├── type.mcfunction │ │ │ │ │ ├── unstable.mcfunction │ │ │ │ │ ├── up.mcfunction │ │ │ │ │ ├── vertical_direction.mcfunction │ │ │ │ │ ├── waterlogged.mcfunction │ │ │ │ │ └── west.mcfunction │ │ │ ├── place │ │ │ │ ├── check.mcfunction │ │ │ │ ├── cleanup.mcfunction │ │ │ │ ├── delete.mcfunction │ │ │ │ └── init.mcfunction │ │ │ └── to_item │ │ │ │ ├── output.mcfunction │ │ │ │ └── set.mcfunction │ │ ├── common │ │ │ ├── cleanup.mcfunction │ │ │ └── setup.mcfunction │ │ ├── data │ │ │ └── type │ │ │ │ ├── array.mcfunction │ │ │ │ ├── numeric.mcfunction │ │ │ │ ├── numeric │ │ │ │ ├── byte.mcfunction │ │ │ │ ├── double.mcfunction │ │ │ │ ├── float.mcfunction │ │ │ │ ├── int.mcfunction │ │ │ │ ├── long.mcfunction │ │ │ │ └── short.mcfunction │ │ │ │ ├── object.mcfunction │ │ │ │ ├── setup.mcfunction │ │ │ │ └── string.mcfunction │ │ ├── inventory │ │ │ ├── compact │ │ │ │ ├── init.mcfunction │ │ │ │ ├── iterate.mcfunction │ │ │ │ └── stack │ │ │ │ │ ├── append.mcfunction │ │ │ │ │ ├── count.mcfunction │ │ │ │ │ └── init.mcfunction │ │ │ ├── give │ │ │ │ ├── drop.mcfunction │ │ │ │ ├── modify.mcfunction │ │ │ │ ├── set.mcfunction │ │ │ │ └── slot.mcfunction │ │ │ ├── insert │ │ │ │ ├── empty_inventory.mcfunction │ │ │ │ ├── init.mcfunction │ │ │ │ ├── insert_overflow.mcfunction │ │ │ │ ├── iterate.mcfunction │ │ │ │ ├── iterate │ │ │ │ │ ├── get_empty_slots.mcfunction │ │ │ │ │ ├── main.mcfunction │ │ │ │ │ └── stack_fit.mcfunction │ │ │ │ └── main.mcfunction │ │ │ └── strip_slots │ │ │ │ ├── init.mcfunction │ │ │ │ └── iterate.mcfunction │ │ └── player │ │ │ └── teleport │ │ │ ├── entity.mcfunction │ │ │ └── init.mcfunction │ ├── init.mcfunction │ ├── load.mcfunction │ ├── math │ │ ├── _load.mcfunction │ │ ├── _objectives.mcfunction │ │ ├── array_to_integer │ │ │ ├── init.mcfunction │ │ │ └── iterate.mcfunction │ │ ├── constants.mcfunction │ │ ├── power │ │ │ ├── init.mcfunction │ │ │ └── iterate.mcfunction │ │ └── string_to_integer │ │ │ ├── init.mcfunction │ │ │ └── iterate.mcfunction │ ├── objectives.mcfunction │ ├── player │ │ ├── _objectives.mcfunction │ │ ├── id.mcfunction │ │ ├── init.mcfunction │ │ ├── scroll │ │ │ ├── direction.mcfunction │ │ │ ├── init.mcfunction │ │ │ └── scrolled.mcfunction │ │ └── tags.mcfunction │ ├── spec │ │ ├── check.mcfunction │ │ ├── data │ │ │ ├── _perform.mcfunction │ │ │ ├── array │ │ │ │ ├── _perform.mcfunction │ │ │ │ └── slice.mcfunction │ │ │ ├── compare_different.mcfunction │ │ │ ├── compare_same.mcfunction │ │ │ ├── get.mcfunction │ │ │ ├── includes.mcfunction │ │ │ ├── not_includes.mcfunction │ │ │ └── set.mcfunction │ │ ├── helpers │ │ │ └── data │ │ │ │ ├── _perform.mcfunction │ │ │ │ └── type │ │ │ │ ├── _perform.mcfunction │ │ │ │ ├── array.mcfunction │ │ │ │ ├── byte.mcfunction │ │ │ │ ├── double.mcfunction │ │ │ │ ├── float.mcfunction │ │ │ │ ├── int.mcfunction │ │ │ │ ├── long.mcfunction │ │ │ │ ├── object.mcfunction │ │ │ │ ├── short.mcfunction │ │ │ │ ├── string.mcfunction │ │ │ │ └── unknown.mcfunction │ │ └── perform.mcfunction │ ├── string │ │ ├── _load.mcfunction │ │ ├── _objectives.mcfunction │ │ ├── ascii │ │ │ ├── lookup.macro.mcfunction │ │ │ ├── table.macro.mcfunction │ │ │ └── table.mcfunction │ │ ├── common │ │ │ ├── cleanup.mcfunction │ │ │ └── setup.mcfunction │ │ ├── from_array │ │ │ ├── init.mcfunction │ │ │ └── iterate.mcfunction │ │ ├── newline.mcfunction │ │ └── to_array │ │ │ ├── init.mcfunction │ │ │ └── iterate.mcfunction │ ├── test │ │ ├── _objectives.mcfunction │ │ ├── common │ │ │ ├── cleanup.mcfunction │ │ │ └── reset.mcfunction │ │ ├── perform │ │ │ ├── check.mcfunction │ │ │ ├── init.mcfunction │ │ │ ├── log.mcfunction │ │ │ └── log │ │ │ │ ├── fail.mcfunction │ │ │ │ └── pass.mcfunction │ │ └── summary.mcfunction │ ├── tui │ │ ├── _objectives.mcfunction │ │ ├── cleanup │ │ │ └── reset.mcfunction │ │ ├── common │ │ │ ├── cleanup.mcfunction │ │ │ └── setup.mcfunction │ │ ├── render │ │ │ ├── clear.mcfunction │ │ │ ├── data │ │ │ │ ├── bulletless.mcfunction │ │ │ │ └── trigger.mcfunction │ │ │ ├── defaults.mcfunction │ │ │ ├── display.mcfunction │ │ │ ├── display │ │ │ │ ├── border │ │ │ │ │ ├── calculate.mcfunction │ │ │ │ │ ├── horizontal.mcfunction │ │ │ │ │ ├── left.mcfunction │ │ │ │ │ └── right.mcfunction │ │ │ │ ├── footer.mcfunction │ │ │ │ ├── header.mcfunction │ │ │ │ ├── json.mcfunction │ │ │ │ └── padding.mcfunction │ │ │ ├── init.mcfunction │ │ │ └── iterate.mcfunction │ │ ├── select │ │ │ ├── builtin │ │ │ │ └── page.mcfunction │ │ │ ├── function.mcfunction │ │ │ ├── init.mcfunction │ │ │ ├── iterate.mcfunction │ │ │ └── slot.mcfunction │ │ └── warnings │ │ │ └── 404.mcfunction │ ├── verify │ │ └── cleanup.mcfunction │ ├── version.mcfunction │ └── z_dfu │ │ ├── init.mcfunction │ │ └── v0 │ │ ├── init.mcfunction │ │ └── v5_12.mcfunction │ ├── item_modifier │ ├── helpers │ │ ├── inventory │ │ │ └── stack_max │ │ │ │ └── count.json │ │ └── player │ │ │ └── head.json │ └── string │ │ └── resolve.json │ ├── loot_table │ └── string │ │ ├── ascii.json │ │ └── newline.json │ ├── predicate │ ├── api │ │ ├── entity │ │ │ ├── has_passenger.json │ │ │ └── has_vehicle.json │ │ └── player │ │ │ ├── has_died.json │ │ │ ├── has_killed.json │ │ │ ├── has_killed_player.json │ │ │ ├── has_scrolled.json │ │ │ ├── is_on_fire.json │ │ │ ├── is_sneaking.json │ │ │ ├── is_sprinting.json │ │ │ └── is_swimming.json │ ├── helpers │ │ └── block │ │ │ └── get │ │ │ └── states │ │ │ ├── age.json │ │ │ ├── age │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 16.json │ │ │ ├── 17.json │ │ │ ├── 18.json │ │ │ ├── 19.json │ │ │ ├── 2.json │ │ │ ├── 20.json │ │ │ ├── 21.json │ │ │ ├── 22.json │ │ │ ├── 23.json │ │ │ ├── 24.json │ │ │ ├── 25.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ └── 9.json │ │ │ ├── attached.json │ │ │ ├── attached │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── attachment.json │ │ │ ├── attachment │ │ │ ├── ceiling.json │ │ │ ├── double_wall.json │ │ │ ├── floor.json │ │ │ └── single_wall.json │ │ │ ├── axis.json │ │ │ ├── axis │ │ │ ├── x.json │ │ │ ├── y.json │ │ │ └── z.json │ │ │ ├── berries.json │ │ │ ├── berries │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── bites.json │ │ │ ├── bites │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ └── 6.json │ │ │ ├── bloom.json │ │ │ ├── bloom │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── bottom.json │ │ │ ├── bottom │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── can_summon.json │ │ │ ├── can_summon │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── charges.json │ │ │ ├── charges │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ └── 4.json │ │ │ ├── conditional.json │ │ │ ├── conditional │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── delay.json │ │ │ ├── delay │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ └── 4.json │ │ │ ├── disarmed.json │ │ │ ├── disarmed │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── distance.json │ │ │ ├── distance │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ └── 7.json │ │ │ ├── down.json │ │ │ ├── down │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── drag.json │ │ │ ├── drag │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── east.json │ │ │ ├── east │ │ │ ├── false.json │ │ │ ├── low.json │ │ │ ├── none.json │ │ │ ├── tall.json │ │ │ └── true.json │ │ │ ├── eggs.json │ │ │ ├── eggs │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ └── 4.json │ │ │ ├── enabled.json │ │ │ ├── enabled │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── extended.json │ │ │ ├── extended │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── eye.json │ │ │ ├── eye │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── face.json │ │ │ ├── face │ │ │ ├── ceiling.json │ │ │ ├── floor.json │ │ │ └── wall.json │ │ │ ├── facing.json │ │ │ ├── facing │ │ │ ├── down.json │ │ │ ├── east.json │ │ │ ├── north.json │ │ │ ├── south.json │ │ │ ├── up.json │ │ │ └── west.json │ │ │ ├── half.json │ │ │ ├── half │ │ │ ├── bottom.json │ │ │ ├── lower.json │ │ │ ├── top.json │ │ │ └── upper.json │ │ │ ├── hanging.json │ │ │ ├── hanging │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── has_book.json │ │ │ ├── has_book │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── has_bottle_0.json │ │ │ ├── has_bottle_0 │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── has_bottle_1.json │ │ │ ├── has_bottle_1 │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── has_bottle_2.json │ │ │ ├── has_bottle_2 │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── has_record.json │ │ │ ├── has_record │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── hatch.json │ │ │ ├── hatch │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ └── 2.json │ │ │ ├── hinge.json │ │ │ ├── hinge │ │ │ ├── left.json │ │ │ └── right.json │ │ │ ├── honey_level.json │ │ │ ├── honey_level │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ └── 5.json │ │ │ ├── in_wall.json │ │ │ ├── in_wall │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── init.json │ │ │ ├── instrument.json │ │ │ ├── instrument │ │ │ ├── banjo.json │ │ │ ├── basedrum.json │ │ │ ├── bass.json │ │ │ ├── bell.json │ │ │ ├── bit.json │ │ │ ├── chime.json │ │ │ ├── cow_bell.json │ │ │ ├── creeper.json │ │ │ ├── custom_head.json │ │ │ ├── didgeridoo.json │ │ │ ├── dragon.json │ │ │ ├── flute.json │ │ │ ├── guitar.json │ │ │ ├── harp.json │ │ │ ├── hat.json │ │ │ ├── iron_xylophone.json │ │ │ ├── piglin.json │ │ │ ├── pling.json │ │ │ ├── skeleton.json │ │ │ ├── snare.json │ │ │ ├── wither_skeleton.json │ │ │ ├── xylophone.json │ │ │ └── zombie.json │ │ │ ├── layers.json │ │ │ ├── layers │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ └── 8.json │ │ │ ├── leaves.json │ │ │ ├── leaves │ │ │ ├── large.json │ │ │ ├── none.json │ │ │ └── small.json │ │ │ ├── level.json │ │ │ ├── level │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ └── 9.json │ │ │ ├── lit.json │ │ │ ├── lit │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── locked.json │ │ │ ├── locked │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── mode.json │ │ │ ├── mode │ │ │ ├── compare.json │ │ │ ├── corner.json │ │ │ ├── data.json │ │ │ ├── load.json │ │ │ ├── save.json │ │ │ └── subtract.json │ │ │ ├── moisture.json │ │ │ ├── moisture │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ └── 7.json │ │ │ ├── north.json │ │ │ ├── north │ │ │ ├── false.json │ │ │ ├── low.json │ │ │ ├── none.json │ │ │ ├── tall.json │ │ │ └── true.json │ │ │ ├── note.json │ │ │ ├── note │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 16.json │ │ │ ├── 17.json │ │ │ ├── 18.json │ │ │ ├── 19.json │ │ │ ├── 2.json │ │ │ ├── 20.json │ │ │ ├── 21.json │ │ │ ├── 22.json │ │ │ ├── 23.json │ │ │ ├── 24.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ └── 9.json │ │ │ ├── occupied.json │ │ │ ├── occupied │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── open.json │ │ │ ├── open │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── orientation.json │ │ │ ├── orientation │ │ │ ├── down_east.json │ │ │ ├── down_north.json │ │ │ ├── down_south.json │ │ │ ├── down_west.json │ │ │ ├── east_up.json │ │ │ ├── north_up.json │ │ │ ├── south_up.json │ │ │ ├── up_east.json │ │ │ ├── up_north.json │ │ │ ├── up_south.json │ │ │ ├── up_west.json │ │ │ └── west_up.json │ │ │ ├── part.json │ │ │ ├── part │ │ │ ├── foot.json │ │ │ └── head.json │ │ │ ├── persistent.json │ │ │ ├── persistent │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── pickles.json │ │ │ ├── pickles │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ └── 4.json │ │ │ ├── power.json │ │ │ ├── power │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ └── 9.json │ │ │ ├── powered.json │ │ │ ├── powered │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── rotation.json │ │ │ ├── rotation │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ └── 9.json │ │ │ ├── sculk_sensor_phase.json │ │ │ ├── sculk_sensor_phase │ │ │ ├── active.json │ │ │ ├── cooldown.json │ │ │ └── inactive.json │ │ │ ├── shape.json │ │ │ ├── shape │ │ │ ├── ascending_east.json │ │ │ ├── ascending_north.json │ │ │ ├── ascending_south.json │ │ │ ├── ascending_west.json │ │ │ ├── east_west.json │ │ │ ├── inner_left.json │ │ │ ├── inner_right.json │ │ │ ├── north_east.json │ │ │ ├── north_south.json │ │ │ ├── north_west.json │ │ │ ├── outer_left.json │ │ │ ├── outer_right.json │ │ │ ├── south_east.json │ │ │ ├── south_west.json │ │ │ └── straight.json │ │ │ ├── shrieking.json │ │ │ ├── shrieking │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── signal_fire.json │ │ │ ├── signal_fire │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── slot_0_occupied.json │ │ │ ├── slot_0_occupied │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── slot_1_occupied.json │ │ │ ├── slot_1_occupied │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── slot_2_occupied.json │ │ │ ├── slot_2_occupied │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── slot_3_occupied.json │ │ │ ├── slot_3_occupied │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── slot_4_occupied.json │ │ │ ├── slot_4_occupied │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── slot_5_occupied.json │ │ │ ├── slot_5_occupied │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── snowy.json │ │ │ ├── snowy │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── south.json │ │ │ ├── south │ │ │ ├── false.json │ │ │ ├── low.json │ │ │ ├── none.json │ │ │ ├── tall.json │ │ │ └── true.json │ │ │ ├── stage.json │ │ │ ├── stage │ │ │ ├── 0.json │ │ │ └── 1.json │ │ │ ├── thickness.json │ │ │ ├── thickness │ │ │ ├── base.json │ │ │ ├── frustum.json │ │ │ ├── middle.json │ │ │ ├── tip.json │ │ │ └── tip_merge.json │ │ │ ├── tilt.json │ │ │ ├── tilt │ │ │ ├── full.json │ │ │ ├── none.json │ │ │ ├── partial.json │ │ │ └── unstable.json │ │ │ ├── triggered.json │ │ │ ├── triggered │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── type.json │ │ │ ├── type │ │ │ ├── bottom.json │ │ │ ├── double.json │ │ │ ├── left.json │ │ │ ├── normal.json │ │ │ ├── right.json │ │ │ ├── single.json │ │ │ ├── sticky.json │ │ │ └── top.json │ │ │ ├── unstable.json │ │ │ ├── unstable │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── up.json │ │ │ ├── up │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── vertical_direction.json │ │ │ ├── vertical_direction │ │ │ ├── down.json │ │ │ └── up.json │ │ │ ├── waterlogged.json │ │ │ ├── waterlogged │ │ │ ├── false.json │ │ │ └── true.json │ │ │ ├── west.json │ │ │ └── west │ │ │ ├── false.json │ │ │ ├── low.json │ │ │ ├── none.json │ │ │ ├── tall.json │ │ │ └── true.json │ └── tui │ │ └── selected.json │ └── tags │ ├── block │ └── helpers │ │ └── block │ │ └── get │ │ └── blocks │ │ ├── 0.json │ │ ├── 00.json │ │ ├── 000.json │ │ ├── 0000.json │ │ ├── 00000.json │ │ ├── 000000.json │ │ ├── 0000000.json │ │ ├── 00000000.json │ │ ├── 000000000.json │ │ ├── 000000001.json │ │ ├── 0000000010.json │ │ ├── 0000000011.json │ │ ├── 00000001.json │ │ ├── 000000010.json │ │ ├── 0000000100.json │ │ ├── 0000000101.json │ │ ├── 000000011.json │ │ ├── 0000000110.json │ │ ├── 0000000111.json │ │ ├── 0000001.json │ │ ├── 00000010.json │ │ ├── 000000100.json │ │ ├── 0000001000.json │ │ ├── 0000001001.json │ │ ├── 000000101.json │ │ ├── 0000001010.json │ │ ├── 0000001011.json │ │ ├── 00000011.json │ │ ├── 000000110.json │ │ ├── 0000001100.json │ │ ├── 0000001101.json │ │ ├── 000000111.json │ │ ├── 0000001110.json │ │ ├── 0000001111.json │ │ ├── 000001.json │ │ ├── 0000010.json │ │ ├── 00000100.json │ │ ├── 000001000.json │ │ ├── 0000010000.json │ │ ├── 0000010001.json │ │ ├── 000001001.json │ │ ├── 0000010010.json │ │ ├── 0000010011.json │ │ ├── 00000101.json │ │ ├── 000001010.json │ │ ├── 0000010100.json │ │ ├── 0000010101.json │ │ ├── 000001011.json │ │ ├── 0000010110.json │ │ ├── 0000010111.json │ │ ├── 0000011.json │ │ ├── 00000110.json │ │ ├── 000001100.json │ │ ├── 0000011000.json │ │ ├── 0000011001.json │ │ ├── 000001101.json │ │ ├── 0000011010.json │ │ ├── 0000011011.json │ │ ├── 00000111.json │ │ ├── 000001110.json │ │ ├── 0000011100.json │ │ ├── 0000011101.json │ │ ├── 000001111.json │ │ ├── 0000011110.json │ │ ├── 0000011111.json │ │ ├── 00001.json │ │ ├── 000010.json │ │ ├── 0000100.json │ │ ├── 00001000.json │ │ ├── 000010000.json │ │ ├── 000010001.json │ │ ├── 0000100010.json │ │ ├── 0000100011.json │ │ ├── 00001001.json │ │ ├── 000010010.json │ │ ├── 0000100100.json │ │ ├── 0000100101.json │ │ ├── 000010011.json │ │ ├── 0000100110.json │ │ ├── 0000100111.json │ │ ├── 0000101.json │ │ ├── 00001010.json │ │ ├── 000010100.json │ │ ├── 0000101000.json │ │ ├── 0000101001.json │ │ ├── 000010101.json │ │ ├── 0000101010.json │ │ ├── 0000101011.json │ │ ├── 00001011.json │ │ ├── 000010110.json │ │ ├── 0000101100.json │ │ ├── 0000101101.json │ │ ├── 000010111.json │ │ ├── 0000101110.json │ │ ├── 0000101111.json │ │ ├── 000011.json │ │ ├── 0000110.json │ │ ├── 00001100.json │ │ ├── 000011000.json │ │ ├── 0000110000.json │ │ ├── 0000110001.json │ │ ├── 000011001.json │ │ ├── 0000110010.json │ │ ├── 0000110011.json │ │ ├── 00001101.json │ │ ├── 000011010.json │ │ ├── 0000110100.json │ │ ├── 0000110101.json │ │ ├── 000011011.json │ │ ├── 0000110110.json │ │ ├── 0000110111.json │ │ ├── 0000111.json │ │ ├── 00001110.json │ │ ├── 000011100.json │ │ ├── 0000111000.json │ │ ├── 0000111001.json │ │ ├── 000011101.json │ │ ├── 0000111010.json │ │ ├── 0000111011.json │ │ ├── 00001111.json │ │ ├── 000011110.json │ │ ├── 0000111100.json │ │ ├── 0000111101.json │ │ ├── 000011111.json │ │ ├── 0000111110.json │ │ ├── 0000111111.json │ │ ├── 0001.json │ │ ├── 00010.json │ │ ├── 000100.json │ │ ├── 0001000.json │ │ ├── 00010000.json │ │ ├── 000100000.json │ │ ├── 000100001.json │ │ ├── 0001000010.json │ │ ├── 0001000011.json │ │ ├── 00010001.json │ │ ├── 000100010.json │ │ ├── 0001000100.json │ │ ├── 0001000101.json │ │ ├── 000100011.json │ │ ├── 0001000110.json │ │ ├── 0001000111.json │ │ ├── 0001001.json │ │ ├── 00010010.json │ │ ├── 000100100.json │ │ ├── 0001001000.json │ │ ├── 0001001001.json │ │ ├── 000100101.json │ │ ├── 0001001010.json │ │ ├── 0001001011.json │ │ ├── 00010011.json │ │ ├── 000100110.json │ │ ├── 0001001100.json │ │ ├── 0001001101.json │ │ ├── 000100111.json │ │ ├── 0001001110.json │ │ ├── 0001001111.json │ │ ├── 000101.json │ │ ├── 0001010.json │ │ ├── 00010100.json │ │ ├── 000101000.json │ │ ├── 0001010000.json │ │ ├── 0001010001.json │ │ ├── 000101001.json │ │ ├── 0001010010.json │ │ ├── 0001010011.json │ │ ├── 00010101.json │ │ ├── 000101010.json │ │ ├── 0001010100.json │ │ ├── 0001010101.json │ │ ├── 000101011.json │ │ ├── 0001010110.json │ │ ├── 0001010111.json │ │ ├── 0001011.json │ │ ├── 00010110.json │ │ ├── 000101100.json │ │ ├── 0001011000.json │ │ ├── 0001011001.json │ │ ├── 000101101.json │ │ ├── 0001011010.json │ │ ├── 0001011011.json │ │ ├── 00010111.json │ │ ├── 000101110.json │ │ ├── 0001011100.json │ │ ├── 0001011101.json │ │ ├── 000101111.json │ │ ├── 0001011110.json │ │ ├── 0001011111.json │ │ ├── 00011.json │ │ ├── 000110.json │ │ ├── 0001100.json │ │ ├── 00011000.json │ │ ├── 000110000.json │ │ ├── 000110001.json │ │ ├── 0001100010.json │ │ ├── 0001100011.json │ │ ├── 00011001.json │ │ ├── 000110010.json │ │ ├── 0001100100.json │ │ ├── 0001100101.json │ │ ├── 000110011.json │ │ ├── 0001100110.json │ │ ├── 0001100111.json │ │ ├── 0001101.json │ │ ├── 00011010.json │ │ ├── 000110100.json │ │ ├── 0001101000.json │ │ ├── 0001101001.json │ │ ├── 000110101.json │ │ ├── 0001101010.json │ │ ├── 0001101011.json │ │ ├── 00011011.json │ │ ├── 000110110.json │ │ ├── 0001101100.json │ │ ├── 0001101101.json │ │ ├── 000110111.json │ │ ├── 0001101110.json │ │ ├── 0001101111.json │ │ ├── 000111.json │ │ ├── 0001110.json │ │ ├── 00011100.json │ │ ├── 000111000.json │ │ ├── 0001110000.json │ │ ├── 0001110001.json │ │ ├── 000111001.json │ │ ├── 0001110010.json │ │ ├── 0001110011.json │ │ ├── 00011101.json │ │ ├── 000111010.json │ │ ├── 0001110100.json │ │ ├── 0001110101.json │ │ ├── 000111011.json │ │ ├── 0001110110.json │ │ ├── 0001110111.json │ │ ├── 0001111.json │ │ ├── 00011110.json │ │ ├── 000111100.json │ │ ├── 0001111000.json │ │ ├── 0001111001.json │ │ ├── 000111101.json │ │ ├── 0001111010.json │ │ ├── 0001111011.json │ │ ├── 00011111.json │ │ ├── 000111110.json │ │ ├── 0001111100.json │ │ ├── 0001111101.json │ │ ├── 000111111.json │ │ ├── 0001111110.json │ │ ├── 0001111111.json │ │ ├── 001.json │ │ ├── 0010.json │ │ ├── 00100.json │ │ ├── 001000.json │ │ ├── 0010000.json │ │ ├── 00100000.json │ │ ├── 001000000.json │ │ ├── 001000001.json │ │ ├── 0010000010.json │ │ ├── 0010000011.json │ │ ├── 00100001.json │ │ ├── 001000010.json │ │ ├── 0010000100.json │ │ ├── 0010000101.json │ │ ├── 001000011.json │ │ ├── 0010000110.json │ │ ├── 0010000111.json │ │ ├── 0010001.json │ │ ├── 00100010.json │ │ ├── 001000100.json │ │ ├── 0010001000.json │ │ ├── 0010001001.json │ │ ├── 001000101.json │ │ ├── 0010001010.json │ │ ├── 0010001011.json │ │ ├── 00100011.json │ │ ├── 001000110.json │ │ ├── 0010001100.json │ │ ├── 0010001101.json │ │ ├── 001000111.json │ │ ├── 0010001110.json │ │ ├── 0010001111.json │ │ ├── 001001.json │ │ ├── 0010010.json │ │ ├── 00100100.json │ │ ├── 001001000.json │ │ ├── 0010010000.json │ │ ├── 0010010001.json │ │ ├── 001001001.json │ │ ├── 0010010010.json │ │ ├── 0010010011.json │ │ ├── 00100101.json │ │ ├── 001001010.json │ │ ├── 0010010100.json │ │ ├── 0010010101.json │ │ ├── 001001011.json │ │ ├── 0010010110.json │ │ ├── 0010010111.json │ │ ├── 0010011.json │ │ ├── 00100110.json │ │ ├── 001001100.json │ │ ├── 0010011000.json │ │ ├── 0010011001.json │ │ ├── 001001101.json │ │ ├── 0010011010.json │ │ ├── 0010011011.json │ │ ├── 00100111.json │ │ ├── 001001110.json │ │ ├── 0010011100.json │ │ ├── 0010011101.json │ │ ├── 001001111.json │ │ ├── 0010011110.json │ │ ├── 0010011111.json │ │ ├── 00101.json │ │ ├── 001010.json │ │ ├── 0010100.json │ │ ├── 00101000.json │ │ ├── 001010000.json │ │ ├── 001010001.json │ │ ├── 0010100010.json │ │ ├── 0010100011.json │ │ ├── 00101001.json │ │ ├── 001010010.json │ │ ├── 0010100100.json │ │ ├── 0010100101.json │ │ ├── 001010011.json │ │ ├── 0010100110.json │ │ ├── 0010100111.json │ │ ├── 0010101.json │ │ ├── 00101010.json │ │ ├── 001010100.json │ │ ├── 0010101000.json │ │ ├── 0010101001.json │ │ ├── 001010101.json │ │ ├── 0010101010.json │ │ ├── 0010101011.json │ │ ├── 00101011.json │ │ ├── 001010110.json │ │ ├── 0010101100.json │ │ ├── 0010101101.json │ │ ├── 001010111.json │ │ ├── 0010101110.json │ │ ├── 0010101111.json │ │ ├── 001011.json │ │ ├── 0010110.json │ │ ├── 00101100.json │ │ ├── 001011000.json │ │ ├── 0010110000.json │ │ ├── 0010110001.json │ │ ├── 001011001.json │ │ ├── 0010110010.json │ │ ├── 0010110011.json │ │ ├── 00101101.json │ │ ├── 001011010.json │ │ ├── 0010110100.json │ │ ├── 0010110101.json │ │ ├── 001011011.json │ │ ├── 0010110110.json │ │ ├── 0010110111.json │ │ ├── 0010111.json │ │ ├── 00101110.json │ │ ├── 001011100.json │ │ ├── 0010111000.json │ │ ├── 0010111001.json │ │ ├── 001011101.json │ │ ├── 0010111010.json │ │ ├── 0010111011.json │ │ ├── 00101111.json │ │ ├── 001011110.json │ │ ├── 0010111100.json │ │ ├── 0010111101.json │ │ ├── 001011111.json │ │ ├── 0010111110.json │ │ ├── 0010111111.json │ │ ├── 0011.json │ │ ├── 00110.json │ │ ├── 001100.json │ │ ├── 0011000.json │ │ ├── 00110000.json │ │ ├── 001100000.json │ │ ├── 001100001.json │ │ ├── 0011000010.json │ │ ├── 0011000011.json │ │ ├── 00110001.json │ │ ├── 001100010.json │ │ ├── 0011000100.json │ │ ├── 0011000101.json │ │ ├── 001100011.json │ │ ├── 0011000110.json │ │ ├── 0011000111.json │ │ ├── 0011001.json │ │ ├── 00110010.json │ │ ├── 001100100.json │ │ ├── 0011001000.json │ │ ├── 0011001001.json │ │ ├── 001100101.json │ │ ├── 0011001010.json │ │ ├── 0011001011.json │ │ ├── 00110011.json │ │ ├── 001100110.json │ │ ├── 0011001100.json │ │ ├── 0011001101.json │ │ ├── 001100111.json │ │ ├── 0011001110.json │ │ ├── 0011001111.json │ │ ├── 001101.json │ │ ├── 0011010.json │ │ ├── 00110100.json │ │ ├── 001101000.json │ │ ├── 0011010000.json │ │ ├── 0011010001.json │ │ ├── 001101001.json │ │ ├── 0011010010.json │ │ ├── 0011010011.json │ │ ├── 00110101.json │ │ ├── 001101010.json │ │ ├── 0011010100.json │ │ ├── 0011010101.json │ │ ├── 001101011.json │ │ ├── 0011010110.json │ │ ├── 0011010111.json │ │ ├── 0011011.json │ │ ├── 00110110.json │ │ ├── 001101100.json │ │ ├── 0011011000.json │ │ ├── 0011011001.json │ │ ├── 001101101.json │ │ ├── 0011011010.json │ │ ├── 0011011011.json │ │ ├── 00110111.json │ │ ├── 001101110.json │ │ ├── 0011011100.json │ │ ├── 0011011101.json │ │ ├── 001101111.json │ │ ├── 0011011110.json │ │ ├── 0011011111.json │ │ ├── 00111.json │ │ ├── 001110.json │ │ ├── 0011100.json │ │ ├── 00111000.json │ │ ├── 001110000.json │ │ ├── 0011100000.json │ │ ├── 0011100001.json │ │ ├── 001110001.json │ │ ├── 0011100010.json │ │ ├── 0011100011.json │ │ ├── 00111001.json │ │ ├── 001110010.json │ │ ├── 0011100100.json │ │ ├── 0011100101.json │ │ ├── 001110011.json │ │ ├── 0011100110.json │ │ ├── 0011100111.json │ │ ├── 0011101.json │ │ ├── 00111010.json │ │ ├── 001110100.json │ │ ├── 0011101000.json │ │ ├── 0011101001.json │ │ ├── 001110101.json │ │ ├── 0011101010.json │ │ ├── 0011101011.json │ │ ├── 00111011.json │ │ ├── 001110110.json │ │ ├── 0011101100.json │ │ ├── 0011101101.json │ │ ├── 001110111.json │ │ ├── 0011101110.json │ │ ├── 0011101111.json │ │ ├── 001111.json │ │ ├── 0011110.json │ │ ├── 00111100.json │ │ ├── 001111000.json │ │ ├── 0011110000.json │ │ ├── 0011110001.json │ │ ├── 001111001.json │ │ ├── 0011110010.json │ │ ├── 0011110011.json │ │ ├── 00111101.json │ │ ├── 001111010.json │ │ ├── 0011110100.json │ │ ├── 0011110101.json │ │ ├── 001111011.json │ │ ├── 0011110110.json │ │ ├── 0011110111.json │ │ ├── 0011111.json │ │ ├── 00111110.json │ │ ├── 001111100.json │ │ ├── 0011111000.json │ │ ├── 0011111001.json │ │ ├── 001111101.json │ │ ├── 0011111010.json │ │ ├── 0011111011.json │ │ ├── 00111111.json │ │ ├── 001111110.json │ │ ├── 0011111100.json │ │ ├── 0011111101.json │ │ ├── 001111111.json │ │ ├── 0011111110.json │ │ ├── 0011111111.json │ │ ├── 01.json │ │ ├── 010.json │ │ ├── 0100.json │ │ ├── 01000.json │ │ ├── 010000.json │ │ ├── 0100000.json │ │ ├── 01000000.json │ │ ├── 010000000.json │ │ ├── 010000001.json │ │ ├── 0100000010.json │ │ ├── 0100000011.json │ │ ├── 01000001.json │ │ ├── 010000010.json │ │ ├── 0100000100.json │ │ ├── 0100000101.json │ │ ├── 010000011.json │ │ ├── 0100000110.json │ │ ├── 0100000111.json │ │ ├── 0100001.json │ │ ├── 01000010.json │ │ ├── 010000100.json │ │ ├── 0100001000.json │ │ ├── 0100001001.json │ │ ├── 010000101.json │ │ ├── 0100001010.json │ │ ├── 0100001011.json │ │ ├── 01000011.json │ │ ├── 010000110.json │ │ ├── 0100001100.json │ │ ├── 0100001101.json │ │ ├── 010000111.json │ │ ├── 0100001110.json │ │ ├── 0100001111.json │ │ ├── 010001.json │ │ ├── 0100010.json │ │ ├── 01000100.json │ │ ├── 010001000.json │ │ ├── 0100010000.json │ │ ├── 0100010001.json │ │ ├── 010001001.json │ │ ├── 0100010010.json │ │ ├── 0100010011.json │ │ ├── 01000101.json │ │ ├── 010001010.json │ │ ├── 0100010100.json │ │ ├── 0100010101.json │ │ ├── 010001011.json │ │ ├── 0100010110.json │ │ ├── 0100010111.json │ │ ├── 0100011.json │ │ ├── 01000110.json │ │ ├── 010001100.json │ │ ├── 0100011000.json │ │ ├── 0100011001.json │ │ ├── 010001101.json │ │ ├── 0100011010.json │ │ ├── 0100011011.json │ │ ├── 01000111.json │ │ ├── 010001110.json │ │ ├── 0100011100.json │ │ ├── 0100011101.json │ │ ├── 010001111.json │ │ ├── 0100011110.json │ │ ├── 0100011111.json │ │ ├── 01001.json │ │ ├── 010010.json │ │ ├── 0100100.json │ │ ├── 01001000.json │ │ ├── 010010000.json │ │ ├── 010010001.json │ │ ├── 0100100010.json │ │ ├── 0100100011.json │ │ ├── 01001001.json │ │ ├── 010010010.json │ │ ├── 0100100100.json │ │ ├── 0100100101.json │ │ ├── 010010011.json │ │ ├── 0100100110.json │ │ ├── 0100100111.json │ │ ├── 0100101.json │ │ ├── 01001010.json │ │ ├── 010010100.json │ │ ├── 0100101000.json │ │ ├── 0100101001.json │ │ ├── 010010101.json │ │ ├── 0100101010.json │ │ ├── 0100101011.json │ │ ├── 01001011.json │ │ ├── 010010110.json │ │ ├── 0100101100.json │ │ ├── 0100101101.json │ │ ├── 010010111.json │ │ ├── 0100101110.json │ │ ├── 0100101111.json │ │ ├── 010011.json │ │ ├── 0100110.json │ │ ├── 01001100.json │ │ ├── 010011000.json │ │ ├── 0100110000.json │ │ ├── 0100110001.json │ │ ├── 010011001.json │ │ ├── 0100110010.json │ │ ├── 0100110011.json │ │ ├── 01001101.json │ │ ├── 010011010.json │ │ ├── 0100110100.json │ │ ├── 0100110101.json │ │ ├── 010011011.json │ │ ├── 0100110110.json │ │ ├── 0100110111.json │ │ ├── 0100111.json │ │ ├── 01001110.json │ │ ├── 010011100.json │ │ ├── 0100111000.json │ │ ├── 0100111001.json │ │ ├── 010011101.json │ │ ├── 0100111010.json │ │ ├── 0100111011.json │ │ ├── 01001111.json │ │ ├── 010011110.json │ │ ├── 0100111100.json │ │ ├── 0100111101.json │ │ ├── 010011111.json │ │ ├── 0100111110.json │ │ ├── 0100111111.json │ │ ├── 0101.json │ │ ├── 01010.json │ │ ├── 010100.json │ │ ├── 0101000.json │ │ ├── 01010000.json │ │ ├── 010100000.json │ │ ├── 010100001.json │ │ ├── 0101000010.json │ │ ├── 0101000011.json │ │ ├── 01010001.json │ │ ├── 010100010.json │ │ ├── 0101000100.json │ │ ├── 0101000101.json │ │ ├── 010100011.json │ │ ├── 0101000110.json │ │ ├── 0101000111.json │ │ ├── 0101001.json │ │ ├── 01010010.json │ │ ├── 010100100.json │ │ ├── 0101001000.json │ │ ├── 0101001001.json │ │ ├── 010100101.json │ │ ├── 0101001010.json │ │ ├── 0101001011.json │ │ ├── 01010011.json │ │ ├── 010100110.json │ │ ├── 0101001100.json │ │ ├── 0101001101.json │ │ ├── 010100111.json │ │ ├── 0101001110.json │ │ ├── 0101001111.json │ │ ├── 010101.json │ │ ├── 0101010.json │ │ ├── 01010100.json │ │ ├── 010101000.json │ │ ├── 0101010000.json │ │ ├── 0101010001.json │ │ ├── 010101001.json │ │ ├── 0101010010.json │ │ ├── 0101010011.json │ │ ├── 01010101.json │ │ ├── 010101010.json │ │ ├── 0101010100.json │ │ ├── 0101010101.json │ │ ├── 010101011.json │ │ ├── 0101010110.json │ │ ├── 0101010111.json │ │ ├── 0101011.json │ │ ├── 01010110.json │ │ ├── 010101100.json │ │ ├── 0101011000.json │ │ ├── 0101011001.json │ │ ├── 010101101.json │ │ ├── 0101011010.json │ │ ├── 0101011011.json │ │ ├── 01010111.json │ │ ├── 010101110.json │ │ ├── 0101011100.json │ │ ├── 0101011101.json │ │ ├── 010101111.json │ │ ├── 0101011110.json │ │ ├── 0101011111.json │ │ ├── 01011.json │ │ ├── 010110.json │ │ ├── 0101100.json │ │ ├── 01011000.json │ │ ├── 010110000.json │ │ ├── 0101100000.json │ │ ├── 0101100001.json │ │ ├── 010110001.json │ │ ├── 0101100010.json │ │ ├── 0101100011.json │ │ ├── 01011001.json │ │ ├── 010110010.json │ │ ├── 0101100100.json │ │ ├── 0101100101.json │ │ ├── 010110011.json │ │ ├── 0101100110.json │ │ ├── 0101100111.json │ │ ├── 0101101.json │ │ ├── 01011010.json │ │ ├── 010110100.json │ │ ├── 0101101000.json │ │ ├── 0101101001.json │ │ ├── 010110101.json │ │ ├── 0101101010.json │ │ ├── 0101101011.json │ │ ├── 01011011.json │ │ ├── 010110110.json │ │ ├── 0101101100.json │ │ ├── 0101101101.json │ │ ├── 010110111.json │ │ ├── 0101101110.json │ │ ├── 0101101111.json │ │ ├── 010111.json │ │ ├── 0101110.json │ │ ├── 01011100.json │ │ ├── 010111000.json │ │ ├── 0101110000.json │ │ ├── 0101110001.json │ │ ├── 010111001.json │ │ ├── 0101110010.json │ │ ├── 0101110011.json │ │ ├── 01011101.json │ │ ├── 010111010.json │ │ ├── 0101110100.json │ │ ├── 0101110101.json │ │ ├── 010111011.json │ │ ├── 0101110110.json │ │ ├── 0101110111.json │ │ ├── 0101111.json │ │ ├── 01011110.json │ │ ├── 010111100.json │ │ ├── 0101111000.json │ │ ├── 0101111001.json │ │ ├── 010111101.json │ │ ├── 0101111010.json │ │ ├── 0101111011.json │ │ ├── 01011111.json │ │ ├── 010111110.json │ │ ├── 0101111100.json │ │ ├── 0101111101.json │ │ ├── 010111111.json │ │ ├── 0101111110.json │ │ ├── 0101111111.json │ │ ├── 011.json │ │ ├── 0110.json │ │ ├── 01100.json │ │ ├── 011000.json │ │ ├── 0110000.json │ │ ├── 01100000.json │ │ ├── 011000000.json │ │ ├── 011000001.json │ │ ├── 0110000010.json │ │ ├── 0110000011.json │ │ ├── 01100001.json │ │ ├── 011000010.json │ │ ├── 0110000100.json │ │ ├── 0110000101.json │ │ ├── 011000011.json │ │ ├── 0110000110.json │ │ ├── 0110000111.json │ │ ├── 0110001.json │ │ ├── 01100010.json │ │ ├── 011000100.json │ │ ├── 0110001000.json │ │ ├── 0110001001.json │ │ ├── 011000101.json │ │ ├── 0110001010.json │ │ ├── 0110001011.json │ │ ├── 01100011.json │ │ ├── 011000110.json │ │ ├── 0110001100.json │ │ ├── 0110001101.json │ │ ├── 011000111.json │ │ ├── 0110001110.json │ │ ├── 0110001111.json │ │ ├── 011001.json │ │ ├── 0110010.json │ │ ├── 01100100.json │ │ ├── 011001000.json │ │ ├── 0110010000.json │ │ ├── 0110010001.json │ │ ├── 011001001.json │ │ ├── 0110010010.json │ │ ├── 0110010011.json │ │ ├── 01100101.json │ │ ├── 011001010.json │ │ ├── 0110010100.json │ │ ├── 0110010101.json │ │ ├── 011001011.json │ │ ├── 0110010110.json │ │ ├── 0110010111.json │ │ ├── 0110011.json │ │ ├── 01100110.json │ │ ├── 011001100.json │ │ ├── 0110011000.json │ │ ├── 0110011001.json │ │ ├── 011001101.json │ │ ├── 0110011010.json │ │ ├── 0110011011.json │ │ ├── 01100111.json │ │ ├── 011001110.json │ │ ├── 0110011100.json │ │ ├── 0110011101.json │ │ ├── 011001111.json │ │ ├── 0110011110.json │ │ ├── 0110011111.json │ │ ├── 01101.json │ │ ├── 011010.json │ │ ├── 0110100.json │ │ ├── 01101000.json │ │ ├── 011010000.json │ │ ├── 011010001.json │ │ ├── 0110100010.json │ │ ├── 0110100011.json │ │ ├── 01101001.json │ │ ├── 011010010.json │ │ ├── 0110100100.json │ │ ├── 0110100101.json │ │ ├── 011010011.json │ │ ├── 0110100110.json │ │ ├── 0110100111.json │ │ ├── 0110101.json │ │ ├── 01101010.json │ │ ├── 011010100.json │ │ ├── 0110101000.json │ │ ├── 0110101001.json │ │ ├── 011010101.json │ │ ├── 0110101010.json │ │ ├── 0110101011.json │ │ ├── 01101011.json │ │ ├── 011010110.json │ │ ├── 0110101100.json │ │ ├── 0110101101.json │ │ ├── 011010111.json │ │ ├── 0110101110.json │ │ ├── 0110101111.json │ │ ├── 011011.json │ │ ├── 0110110.json │ │ ├── 01101100.json │ │ ├── 011011000.json │ │ ├── 0110110000.json │ │ ├── 0110110001.json │ │ ├── 011011001.json │ │ ├── 0110110010.json │ │ ├── 0110110011.json │ │ ├── 01101101.json │ │ ├── 011011010.json │ │ ├── 0110110100.json │ │ ├── 0110110101.json │ │ ├── 011011011.json │ │ ├── 0110110110.json │ │ ├── 0110110111.json │ │ ├── 0110111.json │ │ ├── 01101110.json │ │ ├── 011011100.json │ │ ├── 0110111000.json │ │ ├── 0110111001.json │ │ ├── 011011101.json │ │ ├── 0110111010.json │ │ ├── 0110111011.json │ │ ├── 01101111.json │ │ ├── 011011110.json │ │ ├── 0110111100.json │ │ ├── 0110111101.json │ │ ├── 011011111.json │ │ ├── 0110111110.json │ │ ├── 0110111111.json │ │ ├── 0111.json │ │ ├── 01110.json │ │ ├── 011100.json │ │ ├── 0111000.json │ │ ├── 01110000.json │ │ ├── 011100000.json │ │ ├── 011100001.json │ │ ├── 0111000010.json │ │ ├── 0111000011.json │ │ ├── 01110001.json │ │ ├── 011100010.json │ │ ├── 0111000100.json │ │ ├── 0111000101.json │ │ ├── 011100011.json │ │ ├── 0111000110.json │ │ ├── 0111000111.json │ │ ├── 0111001.json │ │ ├── 01110010.json │ │ ├── 011100100.json │ │ ├── 0111001000.json │ │ ├── 0111001001.json │ │ ├── 011100101.json │ │ ├── 0111001010.json │ │ ├── 0111001011.json │ │ ├── 01110011.json │ │ ├── 011100110.json │ │ ├── 0111001100.json │ │ ├── 0111001101.json │ │ ├── 011100111.json │ │ ├── 0111001110.json │ │ ├── 0111001111.json │ │ ├── 011101.json │ │ ├── 0111010.json │ │ ├── 01110100.json │ │ ├── 011101000.json │ │ ├── 0111010000.json │ │ ├── 0111010001.json │ │ ├── 011101001.json │ │ ├── 0111010010.json │ │ ├── 0111010011.json │ │ ├── 01110101.json │ │ ├── 011101010.json │ │ ├── 0111010100.json │ │ ├── 0111010101.json │ │ ├── 011101011.json │ │ ├── 0111010110.json │ │ ├── 0111010111.json │ │ ├── 0111011.json │ │ ├── 01110110.json │ │ ├── 011101100.json │ │ ├── 0111011000.json │ │ ├── 0111011001.json │ │ ├── 011101101.json │ │ ├── 0111011010.json │ │ ├── 0111011011.json │ │ ├── 01110111.json │ │ ├── 011101110.json │ │ ├── 0111011100.json │ │ ├── 0111011101.json │ │ ├── 011101111.json │ │ ├── 0111011110.json │ │ ├── 0111011111.json │ │ ├── 01111.json │ │ ├── 011110.json │ │ ├── 0111100.json │ │ ├── 01111000.json │ │ ├── 011110000.json │ │ ├── 0111100000.json │ │ ├── 0111100001.json │ │ ├── 011110001.json │ │ ├── 0111100010.json │ │ ├── 0111100011.json │ │ ├── 01111001.json │ │ ├── 011110010.json │ │ ├── 0111100100.json │ │ ├── 0111100101.json │ │ ├── 011110011.json │ │ ├── 0111100110.json │ │ ├── 0111100111.json │ │ ├── 0111101.json │ │ ├── 01111010.json │ │ ├── 011110100.json │ │ ├── 0111101000.json │ │ ├── 0111101001.json │ │ ├── 011110101.json │ │ ├── 0111101010.json │ │ ├── 0111101011.json │ │ ├── 01111011.json │ │ ├── 011110110.json │ │ ├── 0111101100.json │ │ ├── 0111101101.json │ │ ├── 011110111.json │ │ ├── 0111101110.json │ │ ├── 0111101111.json │ │ ├── 011111.json │ │ ├── 0111110.json │ │ ├── 01111100.json │ │ ├── 011111000.json │ │ ├── 0111110000.json │ │ ├── 0111110001.json │ │ ├── 011111001.json │ │ ├── 0111110010.json │ │ ├── 0111110011.json │ │ ├── 01111101.json │ │ ├── 011111010.json │ │ ├── 0111110100.json │ │ ├── 0111110101.json │ │ ├── 011111011.json │ │ ├── 0111110110.json │ │ ├── 0111110111.json │ │ ├── 0111111.json │ │ ├── 01111110.json │ │ ├── 011111100.json │ │ ├── 0111111000.json │ │ ├── 0111111001.json │ │ ├── 011111101.json │ │ ├── 0111111010.json │ │ ├── 0111111011.json │ │ ├── 01111111.json │ │ ├── 011111110.json │ │ ├── 0111111100.json │ │ ├── 0111111101.json │ │ ├── 011111111.json │ │ ├── 0111111110.json │ │ ├── 0111111111.json │ │ ├── 1.json │ │ ├── 10.json │ │ ├── 100.json │ │ ├── 1000.json │ │ ├── 10000.json │ │ ├── 100000.json │ │ ├── 1000000.json │ │ ├── 10000000.json │ │ ├── 100000000.json │ │ ├── 100000001.json │ │ ├── 1000000010.json │ │ ├── 1000000011.json │ │ ├── 10000001.json │ │ ├── 100000010.json │ │ ├── 1000000100.json │ │ ├── 1000000101.json │ │ ├── 100000011.json │ │ ├── 1000000110.json │ │ ├── 1000000111.json │ │ ├── 1000001.json │ │ ├── 10000010.json │ │ ├── 100000100.json │ │ ├── 1000001000.json │ │ ├── 1000001001.json │ │ ├── 100000101.json │ │ ├── 1000001010.json │ │ ├── 1000001011.json │ │ ├── 10000011.json │ │ ├── 100000110.json │ │ ├── 1000001100.json │ │ ├── 1000001101.json │ │ ├── 100000111.json │ │ ├── 1000001110.json │ │ ├── 1000001111.json │ │ ├── 100001.json │ │ ├── 1000010.json │ │ ├── 10000100.json │ │ ├── 100001000.json │ │ ├── 1000010000.json │ │ ├── 1000010001.json │ │ ├── 100001001.json │ │ ├── 1000010010.json │ │ ├── 1000010011.json │ │ ├── 10000101.json │ │ ├── 100001010.json │ │ ├── 1000010100.json │ │ ├── 1000010101.json │ │ ├── 100001011.json │ │ ├── 1000010110.json │ │ ├── 1000010111.json │ │ ├── 1000011.json │ │ ├── 10000110.json │ │ ├── 100001100.json │ │ ├── 1000011000.json │ │ ├── 1000011001.json │ │ ├── 100001101.json │ │ ├── 1000011010.json │ │ ├── 1000011011.json │ │ ├── 10000111.json │ │ ├── 100001110.json │ │ ├── 1000011100.json │ │ ├── 1000011101.json │ │ ├── 100001111.json │ │ ├── 1000011110.json │ │ ├── 1000011111.json │ │ ├── 10001.json │ │ ├── 100010.json │ │ ├── 1000100.json │ │ ├── 10001000.json │ │ ├── 100010000.json │ │ ├── 100010001.json │ │ ├── 1000100010.json │ │ ├── 1000100011.json │ │ ├── 10001001.json │ │ ├── 100010010.json │ │ ├── 1000100100.json │ │ ├── 1000100101.json │ │ ├── 100010011.json │ │ ├── 1000100110.json │ │ ├── 1000100111.json │ │ ├── 1000101.json │ │ ├── 10001010.json │ │ ├── 100010100.json │ │ ├── 1000101000.json │ │ ├── 1000101001.json │ │ ├── 100010101.json │ │ ├── 1000101010.json │ │ ├── 1000101011.json │ │ ├── 10001011.json │ │ ├── 100010110.json │ │ ├── 1000101100.json │ │ ├── 1000101101.json │ │ ├── 100010111.json │ │ ├── 1000101110.json │ │ ├── 1000101111.json │ │ ├── 100011.json │ │ ├── 1000110.json │ │ ├── 10001100.json │ │ ├── 100011000.json │ │ ├── 1000110000.json │ │ ├── 1000110001.json │ │ ├── 100011001.json │ │ ├── 1000110010.json │ │ ├── 1000110011.json │ │ ├── 10001101.json │ │ ├── 100011010.json │ │ ├── 1000110100.json │ │ ├── 1000110101.json │ │ ├── 100011011.json │ │ ├── 1000110110.json │ │ ├── 1000110111.json │ │ ├── 1000111.json │ │ ├── 10001110.json │ │ ├── 100011100.json │ │ ├── 1000111000.json │ │ ├── 1000111001.json │ │ ├── 100011101.json │ │ ├── 1000111010.json │ │ ├── 1000111011.json │ │ ├── 10001111.json │ │ ├── 100011110.json │ │ ├── 1000111100.json │ │ ├── 1000111101.json │ │ ├── 100011111.json │ │ ├── 1000111110.json │ │ ├── 1000111111.json │ │ ├── 1001.json │ │ ├── 10010.json │ │ ├── 100100.json │ │ ├── 1001000.json │ │ ├── 10010000.json │ │ ├── 100100000.json │ │ ├── 100100001.json │ │ ├── 1001000010.json │ │ ├── 1001000011.json │ │ ├── 10010001.json │ │ ├── 100100010.json │ │ ├── 1001000100.json │ │ ├── 1001000101.json │ │ ├── 100100011.json │ │ ├── 1001000110.json │ │ ├── 1001000111.json │ │ ├── 1001001.json │ │ ├── 10010010.json │ │ ├── 100100100.json │ │ ├── 1001001000.json │ │ ├── 1001001001.json │ │ ├── 100100101.json │ │ ├── 1001001010.json │ │ ├── 1001001011.json │ │ ├── 10010011.json │ │ ├── 100100110.json │ │ ├── 1001001100.json │ │ ├── 1001001101.json │ │ ├── 100100111.json │ │ ├── 1001001110.json │ │ ├── 1001001111.json │ │ ├── 100101.json │ │ ├── 1001010.json │ │ ├── 10010100.json │ │ ├── 100101000.json │ │ ├── 1001010000.json │ │ ├── 1001010001.json │ │ ├── 100101001.json │ │ ├── 1001010010.json │ │ ├── 1001010011.json │ │ ├── 10010101.json │ │ ├── 100101010.json │ │ ├── 1001010100.json │ │ ├── 1001010101.json │ │ ├── 100101011.json │ │ ├── 1001010110.json │ │ ├── 1001010111.json │ │ ├── 1001011.json │ │ ├── 10010110.json │ │ ├── 100101100.json │ │ ├── 1001011000.json │ │ ├── 1001011001.json │ │ ├── 100101101.json │ │ ├── 1001011010.json │ │ ├── 1001011011.json │ │ ├── 10010111.json │ │ ├── 100101110.json │ │ ├── 1001011100.json │ │ ├── 1001011101.json │ │ ├── 100101111.json │ │ ├── 1001011110.json │ │ ├── 1001011111.json │ │ ├── 10011.json │ │ ├── 100110.json │ │ ├── 1001100.json │ │ ├── 10011000.json │ │ ├── 100110000.json │ │ ├── 100110001.json │ │ ├── 1001100010.json │ │ ├── 1001100011.json │ │ ├── 10011001.json │ │ ├── 100110010.json │ │ ├── 1001100100.json │ │ ├── 1001100101.json │ │ ├── 100110011.json │ │ ├── 1001100110.json │ │ ├── 1001100111.json │ │ ├── 1001101.json │ │ ├── 10011010.json │ │ ├── 100110100.json │ │ ├── 1001101000.json │ │ ├── 1001101001.json │ │ ├── 100110101.json │ │ ├── 1001101010.json │ │ ├── 1001101011.json │ │ ├── 10011011.json │ │ ├── 100110110.json │ │ ├── 1001101100.json │ │ ├── 1001101101.json │ │ ├── 100110111.json │ │ ├── 1001101110.json │ │ ├── 1001101111.json │ │ ├── 100111.json │ │ ├── 1001110.json │ │ ├── 10011100.json │ │ ├── 100111000.json │ │ ├── 1001110000.json │ │ ├── 1001110001.json │ │ ├── 100111001.json │ │ ├── 1001110010.json │ │ ├── 1001110011.json │ │ ├── 10011101.json │ │ ├── 100111010.json │ │ ├── 1001110100.json │ │ ├── 1001110101.json │ │ ├── 100111011.json │ │ ├── 1001110110.json │ │ ├── 1001110111.json │ │ ├── 1001111.json │ │ ├── 10011110.json │ │ ├── 100111100.json │ │ ├── 1001111000.json │ │ ├── 1001111001.json │ │ ├── 100111101.json │ │ ├── 1001111010.json │ │ ├── 1001111011.json │ │ ├── 10011111.json │ │ ├── 100111110.json │ │ ├── 1001111100.json │ │ ├── 1001111101.json │ │ ├── 100111111.json │ │ ├── 1001111110.json │ │ ├── 1001111111.json │ │ ├── 101.json │ │ ├── 1010.json │ │ ├── 10100.json │ │ ├── 101000.json │ │ ├── 1010000.json │ │ ├── 10100000.json │ │ ├── 101000000.json │ │ ├── 101000001.json │ │ ├── 1010000010.json │ │ ├── 1010000011.json │ │ ├── 10100001.json │ │ ├── 101000010.json │ │ ├── 1010000100.json │ │ ├── 1010000101.json │ │ ├── 101000011.json │ │ ├── 1010000110.json │ │ ├── 1010000111.json │ │ ├── 1010001.json │ │ ├── 10100010.json │ │ ├── 101000100.json │ │ ├── 1010001000.json │ │ ├── 1010001001.json │ │ ├── 101000101.json │ │ ├── 1010001010.json │ │ ├── 1010001011.json │ │ ├── 10100011.json │ │ ├── 101000110.json │ │ ├── 1010001100.json │ │ ├── 1010001101.json │ │ ├── 101000111.json │ │ ├── 1010001110.json │ │ ├── 1010001111.json │ │ ├── 101001.json │ │ ├── 1010010.json │ │ ├── 10100100.json │ │ ├── 101001000.json │ │ ├── 1010010000.json │ │ ├── 1010010001.json │ │ ├── 101001001.json │ │ ├── 1010010010.json │ │ ├── 1010010011.json │ │ ├── 10100101.json │ │ ├── 101001010.json │ │ ├── 1010010100.json │ │ ├── 1010010101.json │ │ ├── 101001011.json │ │ ├── 1010010110.json │ │ ├── 1010010111.json │ │ ├── 1010011.json │ │ ├── 10100110.json │ │ ├── 101001100.json │ │ ├── 1010011000.json │ │ ├── 1010011001.json │ │ ├── 101001101.json │ │ ├── 1010011010.json │ │ ├── 1010011011.json │ │ ├── 10100111.json │ │ ├── 101001110.json │ │ ├── 1010011100.json │ │ ├── 1010011101.json │ │ ├── 101001111.json │ │ ├── 1010011110.json │ │ ├── 1010011111.json │ │ ├── 10101.json │ │ ├── 101010.json │ │ ├── 1010100.json │ │ ├── 10101000.json │ │ ├── 101010000.json │ │ ├── 101010001.json │ │ ├── 1010100010.json │ │ ├── 1010100011.json │ │ ├── 10101001.json │ │ ├── 101010010.json │ │ ├── 1010100100.json │ │ ├── 1010100101.json │ │ ├── 101010011.json │ │ ├── 1010100110.json │ │ ├── 1010100111.json │ │ ├── 1010101.json │ │ ├── 10101010.json │ │ ├── 101010100.json │ │ ├── 1010101000.json │ │ ├── 1010101001.json │ │ ├── 101010101.json │ │ ├── 1010101010.json │ │ ├── 1010101011.json │ │ ├── 10101011.json │ │ ├── 101010110.json │ │ ├── 1010101100.json │ │ ├── 1010101101.json │ │ ├── 101010111.json │ │ ├── 1010101110.json │ │ ├── 1010101111.json │ │ ├── 101011.json │ │ ├── 1010110.json │ │ ├── 10101100.json │ │ ├── 101011000.json │ │ ├── 1010110000.json │ │ ├── 1010110001.json │ │ ├── 101011001.json │ │ ├── 1010110010.json │ │ ├── 1010110011.json │ │ ├── 10101101.json │ │ ├── 101011010.json │ │ ├── 1010110100.json │ │ ├── 1010110101.json │ │ ├── 101011011.json │ │ ├── 1010110110.json │ │ ├── 1010110111.json │ │ ├── 1010111.json │ │ ├── 10101110.json │ │ ├── 101011100.json │ │ ├── 1010111000.json │ │ ├── 1010111001.json │ │ ├── 101011101.json │ │ ├── 1010111010.json │ │ ├── 1010111011.json │ │ ├── 10101111.json │ │ ├── 101011110.json │ │ ├── 1010111100.json │ │ ├── 1010111101.json │ │ ├── 101011111.json │ │ ├── 1010111110.json │ │ ├── 1010111111.json │ │ ├── 1011.json │ │ ├── 10110.json │ │ ├── 101100.json │ │ ├── 1011000.json │ │ ├── 10110000.json │ │ ├── 101100000.json │ │ ├── 101100001.json │ │ ├── 1011000010.json │ │ ├── 1011000011.json │ │ ├── 10110001.json │ │ ├── 101100010.json │ │ ├── 1011000100.json │ │ ├── 1011000101.json │ │ ├── 101100011.json │ │ ├── 1011000110.json │ │ ├── 1011000111.json │ │ ├── 1011001.json │ │ ├── 10110010.json │ │ ├── 101100100.json │ │ ├── 1011001000.json │ │ ├── 1011001001.json │ │ ├── 101100101.json │ │ ├── 1011001010.json │ │ ├── 1011001011.json │ │ ├── 10110011.json │ │ ├── 101100110.json │ │ ├── 1011001100.json │ │ ├── 1011001101.json │ │ ├── 101100111.json │ │ ├── 1011001110.json │ │ ├── 1011001111.json │ │ ├── 101101.json │ │ ├── 1011010.json │ │ ├── 10110100.json │ │ ├── 101101000.json │ │ ├── 1011010000.json │ │ ├── 1011010001.json │ │ ├── 101101001.json │ │ ├── 1011010010.json │ │ ├── 1011010011.json │ │ ├── 10110101.json │ │ ├── 101101010.json │ │ ├── 1011010100.json │ │ ├── 1011010101.json │ │ ├── 101101011.json │ │ ├── 1011010110.json │ │ ├── 1011010111.json │ │ ├── 1011011.json │ │ ├── 10110110.json │ │ ├── 101101100.json │ │ ├── 1011011000.json │ │ ├── 1011011001.json │ │ ├── 101101101.json │ │ ├── 1011011010.json │ │ ├── 1011011011.json │ │ ├── 10110111.json │ │ ├── 101101110.json │ │ ├── 1011011100.json │ │ ├── 1011011101.json │ │ ├── 101101111.json │ │ ├── 1011011110.json │ │ ├── 1011011111.json │ │ ├── 10111.json │ │ ├── 101110.json │ │ ├── 1011100.json │ │ ├── 10111000.json │ │ ├── 101110000.json │ │ ├── 1011100000.json │ │ ├── 1011100001.json │ │ ├── 101110001.json │ │ ├── 1011100010.json │ │ ├── 1011100011.json │ │ ├── 10111001.json │ │ ├── 101110010.json │ │ ├── 1011100100.json │ │ ├── 1011100101.json │ │ ├── 101110011.json │ │ ├── 1011100110.json │ │ ├── 1011100111.json │ │ ├── 1011101.json │ │ ├── 10111010.json │ │ ├── 101110100.json │ │ ├── 1011101000.json │ │ ├── 1011101001.json │ │ ├── 101110101.json │ │ ├── 1011101010.json │ │ ├── 1011101011.json │ │ ├── 10111011.json │ │ ├── 101110110.json │ │ ├── 1011101100.json │ │ ├── 1011101101.json │ │ ├── 101110111.json │ │ ├── 1011101110.json │ │ ├── 1011101111.json │ │ ├── 101111.json │ │ ├── 1011110.json │ │ ├── 10111100.json │ │ ├── 101111000.json │ │ ├── 1011110000.json │ │ ├── 1011110001.json │ │ ├── 101111001.json │ │ ├── 1011110010.json │ │ ├── 1011110011.json │ │ ├── 10111101.json │ │ ├── 101111010.json │ │ ├── 1011110100.json │ │ ├── 1011110101.json │ │ ├── 101111011.json │ │ ├── 1011110110.json │ │ ├── 1011110111.json │ │ ├── 1011111.json │ │ ├── 10111110.json │ │ ├── 101111100.json │ │ ├── 1011111000.json │ │ ├── 1011111001.json │ │ ├── 101111101.json │ │ ├── 1011111010.json │ │ ├── 1011111011.json │ │ ├── 10111111.json │ │ ├── 101111110.json │ │ ├── 1011111100.json │ │ ├── 1011111101.json │ │ ├── 101111111.json │ │ ├── 1011111110.json │ │ ├── 1011111111.json │ │ ├── 11.json │ │ ├── 110.json │ │ ├── 1100.json │ │ ├── 11000.json │ │ ├── 110000.json │ │ ├── 1100000.json │ │ ├── 11000000.json │ │ ├── 110000000.json │ │ ├── 110000001.json │ │ ├── 1100000010.json │ │ ├── 1100000011.json │ │ ├── 11000001.json │ │ ├── 110000010.json │ │ ├── 1100000100.json │ │ ├── 1100000101.json │ │ ├── 110000011.json │ │ ├── 1100000110.json │ │ ├── 1100000111.json │ │ ├── 1100001.json │ │ ├── 11000010.json │ │ ├── 110000100.json │ │ ├── 1100001000.json │ │ ├── 1100001001.json │ │ ├── 110000101.json │ │ ├── 1100001010.json │ │ ├── 1100001011.json │ │ ├── 11000011.json │ │ ├── 110000110.json │ │ ├── 1100001100.json │ │ ├── 1100001101.json │ │ ├── 110000111.json │ │ ├── 1100001110.json │ │ ├── 1100001111.json │ │ ├── 110001.json │ │ ├── 1100010.json │ │ ├── 11000100.json │ │ ├── 110001000.json │ │ ├── 1100010000.json │ │ ├── 1100010001.json │ │ ├── 110001001.json │ │ ├── 1100010010.json │ │ ├── 1100010011.json │ │ ├── 11000101.json │ │ ├── 110001010.json │ │ ├── 1100010100.json │ │ ├── 1100010101.json │ │ ├── 110001011.json │ │ ├── 1100010110.json │ │ ├── 1100010111.json │ │ ├── 1100011.json │ │ ├── 11000110.json │ │ ├── 110001100.json │ │ ├── 1100011000.json │ │ ├── 1100011001.json │ │ ├── 110001101.json │ │ ├── 1100011010.json │ │ ├── 1100011011.json │ │ ├── 11000111.json │ │ ├── 110001110.json │ │ ├── 1100011100.json │ │ ├── 1100011101.json │ │ ├── 110001111.json │ │ ├── 1100011110.json │ │ ├── 1100011111.json │ │ ├── 11001.json │ │ ├── 110010.json │ │ ├── 1100100.json │ │ ├── 11001000.json │ │ ├── 110010000.json │ │ ├── 110010001.json │ │ ├── 1100100010.json │ │ ├── 1100100011.json │ │ ├── 11001001.json │ │ ├── 110010010.json │ │ ├── 1100100100.json │ │ ├── 1100100101.json │ │ ├── 110010011.json │ │ ├── 1100100110.json │ │ ├── 1100100111.json │ │ ├── 1100101.json │ │ ├── 11001010.json │ │ ├── 110010100.json │ │ ├── 1100101000.json │ │ ├── 1100101001.json │ │ ├── 110010101.json │ │ ├── 1100101010.json │ │ ├── 1100101011.json │ │ ├── 11001011.json │ │ ├── 110010110.json │ │ ├── 1100101100.json │ │ ├── 1100101101.json │ │ ├── 110010111.json │ │ ├── 1100101110.json │ │ ├── 1100101111.json │ │ ├── 110011.json │ │ ├── 1100110.json │ │ ├── 11001100.json │ │ ├── 110011000.json │ │ ├── 1100110000.json │ │ ├── 1100110001.json │ │ ├── 110011001.json │ │ ├── 1100110010.json │ │ ├── 1100110011.json │ │ ├── 11001101.json │ │ ├── 110011010.json │ │ ├── 1100110100.json │ │ ├── 1100110101.json │ │ ├── 110011011.json │ │ ├── 1100110110.json │ │ ├── 1100110111.json │ │ ├── 1100111.json │ │ ├── 11001110.json │ │ ├── 110011100.json │ │ ├── 1100111000.json │ │ ├── 1100111001.json │ │ ├── 110011101.json │ │ ├── 1100111010.json │ │ ├── 1100111011.json │ │ ├── 11001111.json │ │ ├── 110011110.json │ │ ├── 1100111100.json │ │ ├── 1100111101.json │ │ ├── 110011111.json │ │ ├── 1100111110.json │ │ ├── 1100111111.json │ │ ├── 1101.json │ │ ├── 11010.json │ │ ├── 110100.json │ │ ├── 1101000.json │ │ ├── 11010000.json │ │ ├── 110100000.json │ │ ├── 110100001.json │ │ ├── 1101000010.json │ │ ├── 1101000011.json │ │ ├── 11010001.json │ │ ├── 110100010.json │ │ ├── 1101000100.json │ │ ├── 1101000101.json │ │ ├── 110100011.json │ │ ├── 1101000110.json │ │ ├── 1101000111.json │ │ ├── 1101001.json │ │ ├── 11010010.json │ │ ├── 110100100.json │ │ ├── 1101001000.json │ │ ├── 1101001001.json │ │ ├── 110100101.json │ │ ├── 1101001010.json │ │ ├── 1101001011.json │ │ ├── 11010011.json │ │ ├── 110100110.json │ │ ├── 1101001100.json │ │ ├── 1101001101.json │ │ ├── 110100111.json │ │ ├── 1101001110.json │ │ ├── 1101001111.json │ │ ├── 110101.json │ │ ├── 1101010.json │ │ ├── 11010100.json │ │ ├── 110101000.json │ │ ├── 1101010000.json │ │ ├── 1101010001.json │ │ ├── 110101001.json │ │ ├── 1101010010.json │ │ ├── 1101010011.json │ │ ├── 11010101.json │ │ ├── 110101010.json │ │ ├── 1101010100.json │ │ ├── 1101010101.json │ │ ├── 110101011.json │ │ ├── 1101010110.json │ │ ├── 1101010111.json │ │ ├── 1101011.json │ │ ├── 11010110.json │ │ ├── 110101100.json │ │ ├── 1101011000.json │ │ ├── 1101011001.json │ │ ├── 110101101.json │ │ ├── 1101011010.json │ │ ├── 1101011011.json │ │ ├── 11010111.json │ │ ├── 110101110.json │ │ ├── 1101011100.json │ │ ├── 1101011101.json │ │ ├── 110101111.json │ │ ├── 1101011110.json │ │ ├── 1101011111.json │ │ ├── 11011.json │ │ ├── 110110.json │ │ ├── 1101100.json │ │ ├── 11011000.json │ │ ├── 110110000.json │ │ ├── 1101100000.json │ │ ├── 1101100001.json │ │ ├── 110110001.json │ │ ├── 1101100010.json │ │ ├── 1101100011.json │ │ ├── 11011001.json │ │ ├── 110110010.json │ │ ├── 1101100100.json │ │ ├── 1101100101.json │ │ ├── 110110011.json │ │ ├── 1101100110.json │ │ ├── 1101100111.json │ │ ├── 1101101.json │ │ ├── 11011010.json │ │ ├── 110110100.json │ │ ├── 1101101000.json │ │ ├── 1101101001.json │ │ ├── 110110101.json │ │ ├── 1101101010.json │ │ ├── 1101101011.json │ │ ├── 11011011.json │ │ ├── 110110110.json │ │ ├── 1101101100.json │ │ ├── 1101101101.json │ │ ├── 110110111.json │ │ ├── 1101101110.json │ │ ├── 1101101111.json │ │ ├── 110111.json │ │ ├── 1101110.json │ │ ├── 11011100.json │ │ ├── 110111000.json │ │ ├── 1101110000.json │ │ ├── 1101110001.json │ │ ├── 110111001.json │ │ ├── 1101110010.json │ │ ├── 1101110011.json │ │ ├── 11011101.json │ │ ├── 110111010.json │ │ ├── 1101110100.json │ │ ├── 1101110101.json │ │ ├── 110111011.json │ │ ├── 1101110110.json │ │ ├── 1101110111.json │ │ ├── 1101111.json │ │ ├── 11011110.json │ │ ├── 110111100.json │ │ ├── 1101111000.json │ │ ├── 1101111001.json │ │ ├── 110111101.json │ │ ├── 1101111010.json │ │ ├── 1101111011.json │ │ ├── 11011111.json │ │ ├── 110111110.json │ │ ├── 1101111100.json │ │ ├── 1101111101.json │ │ ├── 110111111.json │ │ ├── 1101111110.json │ │ ├── 1101111111.json │ │ ├── 111.json │ │ ├── 1110.json │ │ ├── 11100.json │ │ ├── 111000.json │ │ ├── 1110000.json │ │ ├── 11100000.json │ │ ├── 111000000.json │ │ ├── 111000001.json │ │ ├── 1110000010.json │ │ ├── 1110000011.json │ │ ├── 11100001.json │ │ ├── 111000010.json │ │ ├── 1110000100.json │ │ ├── 1110000101.json │ │ ├── 111000011.json │ │ ├── 1110000110.json │ │ ├── 1110000111.json │ │ ├── 1110001.json │ │ ├── 11100010.json │ │ ├── 111000100.json │ │ ├── 1110001000.json │ │ ├── 1110001001.json │ │ ├── 111000101.json │ │ ├── 1110001010.json │ │ ├── 1110001011.json │ │ ├── 11100011.json │ │ ├── 111000110.json │ │ ├── 1110001100.json │ │ ├── 1110001101.json │ │ ├── 111000111.json │ │ ├── 1110001110.json │ │ ├── 1110001111.json │ │ ├── 111001.json │ │ ├── 1110010.json │ │ ├── 11100100.json │ │ ├── 111001000.json │ │ ├── 1110010000.json │ │ ├── 1110010001.json │ │ ├── 111001001.json │ │ ├── 1110010010.json │ │ ├── 1110010011.json │ │ ├── 11100101.json │ │ ├── 111001010.json │ │ ├── 1110010100.json │ │ ├── 1110010101.json │ │ ├── 111001011.json │ │ ├── 1110010110.json │ │ ├── 1110010111.json │ │ ├── 1110011.json │ │ ├── 11100110.json │ │ ├── 111001100.json │ │ ├── 1110011000.json │ │ ├── 1110011001.json │ │ ├── 111001101.json │ │ ├── 1110011010.json │ │ ├── 1110011011.json │ │ ├── 11100111.json │ │ ├── 111001110.json │ │ ├── 1110011100.json │ │ ├── 1110011101.json │ │ ├── 111001111.json │ │ ├── 1110011110.json │ │ ├── 1110011111.json │ │ ├── 11101.json │ │ ├── 111010.json │ │ ├── 1110100.json │ │ ├── 11101000.json │ │ ├── 111010000.json │ │ ├── 111010001.json │ │ ├── 1110100010.json │ │ ├── 1110100011.json │ │ ├── 11101001.json │ │ ├── 111010010.json │ │ ├── 1110100100.json │ │ ├── 1110100101.json │ │ ├── 111010011.json │ │ ├── 1110100110.json │ │ ├── 1110100111.json │ │ ├── 1110101.json │ │ ├── 11101010.json │ │ ├── 111010100.json │ │ ├── 1110101000.json │ │ ├── 1110101001.json │ │ ├── 111010101.json │ │ ├── 1110101010.json │ │ ├── 1110101011.json │ │ ├── 11101011.json │ │ ├── 111010110.json │ │ ├── 1110101100.json │ │ ├── 1110101101.json │ │ ├── 111010111.json │ │ ├── 1110101110.json │ │ ├── 1110101111.json │ │ ├── 111011.json │ │ ├── 1110110.json │ │ ├── 11101100.json │ │ ├── 111011000.json │ │ ├── 1110110000.json │ │ ├── 1110110001.json │ │ ├── 111011001.json │ │ ├── 1110110010.json │ │ ├── 1110110011.json │ │ ├── 11101101.json │ │ ├── 111011010.json │ │ ├── 1110110100.json │ │ ├── 1110110101.json │ │ ├── 111011011.json │ │ ├── 1110110110.json │ │ ├── 1110110111.json │ │ ├── 1110111.json │ │ ├── 11101110.json │ │ ├── 111011100.json │ │ ├── 1110111000.json │ │ ├── 1110111001.json │ │ ├── 111011101.json │ │ ├── 1110111010.json │ │ ├── 1110111011.json │ │ ├── 11101111.json │ │ ├── 111011110.json │ │ ├── 1110111100.json │ │ ├── 1110111101.json │ │ ├── 111011111.json │ │ ├── 1110111110.json │ │ ├── 1110111111.json │ │ ├── 1111.json │ │ ├── 11110.json │ │ ├── 111100.json │ │ ├── 1111000.json │ │ ├── 11110000.json │ │ ├── 111100000.json │ │ ├── 111100001.json │ │ ├── 1111000010.json │ │ ├── 1111000011.json │ │ ├── 11110001.json │ │ ├── 111100010.json │ │ ├── 1111000100.json │ │ ├── 1111000101.json │ │ ├── 111100011.json │ │ ├── 1111000110.json │ │ ├── 1111000111.json │ │ ├── 1111001.json │ │ ├── 11110010.json │ │ ├── 111100100.json │ │ ├── 1111001000.json │ │ ├── 1111001001.json │ │ ├── 111100101.json │ │ ├── 1111001010.json │ │ ├── 1111001011.json │ │ ├── 11110011.json │ │ ├── 111100110.json │ │ ├── 1111001100.json │ │ ├── 1111001101.json │ │ ├── 111100111.json │ │ ├── 1111001110.json │ │ ├── 1111001111.json │ │ ├── 111101.json │ │ ├── 1111010.json │ │ ├── 11110100.json │ │ ├── 111101000.json │ │ ├── 1111010000.json │ │ ├── 1111010001.json │ │ ├── 111101001.json │ │ ├── 1111010010.json │ │ ├── 1111010011.json │ │ ├── 11110101.json │ │ ├── 111101010.json │ │ ├── 1111010100.json │ │ ├── 1111010101.json │ │ ├── 111101011.json │ │ ├── 1111010110.json │ │ ├── 1111010111.json │ │ ├── 1111011.json │ │ ├── 11110110.json │ │ ├── 111101100.json │ │ ├── 1111011000.json │ │ ├── 1111011001.json │ │ ├── 111101101.json │ │ ├── 1111011010.json │ │ ├── 1111011011.json │ │ ├── 11110111.json │ │ ├── 111101110.json │ │ ├── 1111011100.json │ │ ├── 1111011101.json │ │ ├── 111101111.json │ │ ├── 1111011110.json │ │ ├── 1111011111.json │ │ ├── 11111.json │ │ ├── 111110.json │ │ ├── 1111100.json │ │ ├── 11111000.json │ │ ├── 111110000.json │ │ ├── 1111100000.json │ │ ├── 1111100001.json │ │ ├── 111110001.json │ │ ├── 1111100010.json │ │ ├── 1111100011.json │ │ ├── 11111001.json │ │ ├── 111110010.json │ │ ├── 1111100100.json │ │ ├── 1111100101.json │ │ ├── 111110011.json │ │ ├── 1111100110.json │ │ ├── 1111100111.json │ │ ├── 1111101.json │ │ ├── 11111010.json │ │ ├── 111110100.json │ │ ├── 1111101000.json │ │ ├── 1111101001.json │ │ ├── 111110101.json │ │ ├── 1111101010.json │ │ ├── 1111101011.json │ │ ├── 11111011.json │ │ ├── 111110110.json │ │ ├── 1111101100.json │ │ ├── 1111101101.json │ │ ├── 111110111.json │ │ ├── 1111101110.json │ │ ├── 1111101111.json │ │ ├── 111111.json │ │ ├── 1111110.json │ │ ├── 11111100.json │ │ ├── 111111000.json │ │ ├── 1111110000.json │ │ ├── 1111110001.json │ │ ├── 111111001.json │ │ ├── 1111110010.json │ │ ├── 1111110011.json │ │ ├── 11111101.json │ │ ├── 111111010.json │ │ ├── 1111110100.json │ │ ├── 1111110101.json │ │ ├── 111111011.json │ │ ├── 1111110110.json │ │ ├── 1111110111.json │ │ ├── 1111111.json │ │ ├── 11111110.json │ │ ├── 111111100.json │ │ ├── 1111111000.json │ │ ├── 1111111001.json │ │ ├── 111111101.json │ │ ├── 1111111010.json │ │ ├── 1111111011.json │ │ ├── 11111111.json │ │ ├── 111111110.json │ │ ├── 1111111100.json │ │ ├── 1111111101.json │ │ ├── 111111111.json │ │ ├── 1111111110.json │ │ ├── 1111111111.json │ │ └── init.json │ └── function │ ├── api │ ├── helpers │ │ └── block │ │ │ └── place │ │ │ └── finished.json │ ├── load.json │ ├── player │ │ ├── on_death.json │ │ ├── on_kill.json │ │ ├── on_player_kill.json │ │ └── on_scroll.json │ ├── test.json │ └── tui │ │ ├── index.json │ │ ├── init.json │ │ ├── render │ │ ├── init.json │ │ └── slot.json │ │ └── select │ │ ├── init.json │ │ └── slot.json │ └── load.json ├── docs ├── data.md ├── dimension.md ├── helpers.md ├── math.md ├── player.md ├── string.md ├── test.md └── tui.md ├── pack.mcmeta └── pack.png /.gitignore: -------------------------------------------------------------------------------- 1 | .directory 2 | /working 3 | *.kate-swp 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/README.md -------------------------------------------------------------------------------- /data/minecraft/tags/function/load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/minecraft/tags/function/load.json -------------------------------------------------------------------------------- /data/moxlib/function/api/data/array/reverse.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/data/array/reverse.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/data/array/slice.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/data/array/slice.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/data/collect.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/data/collect.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/data/compare.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/data/compare.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/data/get.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/data/get.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/data/paginate.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/data/paginate.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/data/reset.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/data/reset.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/data/set.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/data/set.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/exec.macro.mcfunction: -------------------------------------------------------------------------------- 1 | $$(target) -------------------------------------------------------------------------------- /data/moxlib/function/api/exec.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/exec.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/helpers/block/get.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/helpers/block/get.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/helpers/block/place.mcfunction: -------------------------------------------------------------------------------- 1 | function moxlib:helpers/block/place/init -------------------------------------------------------------------------------- /data/moxlib/function/api/helpers/block/to_item.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/helpers/block/to_item.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/helpers/data/type.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/helpers/data/type.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/helpers/inventory/compact.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/helpers/inventory/compact.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/helpers/inventory/free_slot.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/helpers/inventory/free_slot.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/helpers/inventory/give.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/helpers/inventory/give.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/helpers/inventory/insert.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/helpers/inventory/insert.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/helpers/inventory/stack_max.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/helpers/inventory/stack_max.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/helpers/player/head.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/helpers/player/head.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/helpers/player/teleport.mcfunction: -------------------------------------------------------------------------------- 1 | function moxlib:helpers/player/teleport/init -------------------------------------------------------------------------------- /data/moxlib/function/api/helpers/reset.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/helpers/reset.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/math/array_to_integer.mcfunction: -------------------------------------------------------------------------------- 1 | function moxlib:math/array_to_integer/init -------------------------------------------------------------------------------- /data/moxlib/function/api/math/misc/fish.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/math/misc/fish.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/math/power.mcfunction: -------------------------------------------------------------------------------- 1 | function moxlib:math/power/init -------------------------------------------------------------------------------- /data/moxlib/function/api/math/random.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/math/random.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/math/string_to_integer.mcfunction: -------------------------------------------------------------------------------- 1 | function moxlib:math/string_to_integer/init 2 | -------------------------------------------------------------------------------- /data/moxlib/function/api/player/from_uuid.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/player/from_uuid.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/player/run.mcfunction: -------------------------------------------------------------------------------- 1 | function moxlib:player/init -------------------------------------------------------------------------------- /data/moxlib/function/api/string/ascii/lookup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/string/ascii/lookup.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/string/concatenate.macro.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/string/concatenate.macro.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/string/concatenate.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/string/concatenate.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/string/filter.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/string/filter.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/string/from_array.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/string/from_array.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/string/reset.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/string/reset.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/string/resolve.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/string/resolve.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/string/to_array.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/string/to_array.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/test/perform.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/test/perform.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/test/start.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/test/start.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/tui/render.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/tui/render.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/tui/reset.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/tui/reset.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/tui/select.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/tui/select.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/api/verify.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/api/verify.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/_objectives.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/_objectives.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/array/_objectives.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/array/_objectives.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/array/reverse/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/array/reverse/init.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/array/reverse/iterate.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/array/reverse/iterate.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/array/slice/cleanup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/array/slice/cleanup.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/array/slice/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/array/slice/init.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/array/slice/loop.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/array/slice/loop.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/array/slice/setup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/array/slice/setup.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/collect/cleanup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/collect/cleanup.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/collect/collect.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/collect/collect.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/collect/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/collect/init.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/collect/match.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/collect/match.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/collect/remain.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/collect/remain.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/collect/setup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/collect/setup.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/common/cleanup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/common/cleanup.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/common/setup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/common/setup.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/compare/cleanup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/compare/cleanup.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/compare/compare.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/compare/compare.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/compare/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/compare/init.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/compare/return.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/compare/return.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/compare/setup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/compare/setup.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/get/cleanup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/get/cleanup.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/get/get.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/get/get.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/get/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/get/init.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/get/return.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/get/return.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/get/setup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/get/setup.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/paginate/append.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/paginate/append.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/paginate/cleanup.mcfunction: -------------------------------------------------------------------------------- 1 | data remove storage moxlib:api/data/paginate target -------------------------------------------------------------------------------- /data/moxlib/function/data/paginate/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/paginate/init.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/paginate/remove.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/paginate/remove.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/paginate/setup.mcfunction: -------------------------------------------------------------------------------- 1 | data remove storage moxlib:api/data/paginate output -------------------------------------------------------------------------------- /data/moxlib/function/data/set/add.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/set/add.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/set/cleanup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/set/cleanup.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/set/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/set/init.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/set/return.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/set/return.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/set/set.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/set/set.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/data/set/setup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/data/set/setup.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/_objectives.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/_objectives.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/0.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/00.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/00.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/000.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/000.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/0000.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/0000.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/00000.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/00000.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/000000.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/000000.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/000001.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/000001.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/00001.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/00001.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/000010.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/000010.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/000011.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/000011.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/0001.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/0001.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/00010.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/00010.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/000100.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/000100.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/000101.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/000101.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/00011.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/00011.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/000110.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/000110.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/000111.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/000111.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/001.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/001.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/0010.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/0010.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/00100.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/00100.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/001000.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/001000.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/001001.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/001001.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/00101.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/00101.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/001010.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/001010.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/001011.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/001011.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/0011.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/0011.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/00110.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/00110.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/001100.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/001100.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/001101.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/001101.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/00111.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/00111.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/001110.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/001110.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/001111.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/001111.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/01.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/01.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/010.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/010.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/0100.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/0100.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/01000.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/01000.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/010000.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/010000.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/010001.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/010001.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/01001.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/01001.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/010010.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/010010.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/010011.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/010011.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/0101.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/0101.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/01010.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/01010.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/010100.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/010100.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/010101.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/010101.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/01011.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/01011.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/010110.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/010110.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/010111.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/010111.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/011.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/011.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/0110.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/0110.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/01100.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/01100.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/011000.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/011000.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/011001.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/011001.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/01101.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/01101.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/011010.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/011010.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/011011.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/011011.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/0111.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/0111.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/01110.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/01110.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/011100.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/011100.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/011101.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/011101.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/01111.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/01111.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/011110.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/011110.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/011111.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/011111.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/1.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/10.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/10.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/100.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/100.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/1000.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/1000.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/10000.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/10000.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/100000.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/100000.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/100001.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/100001.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/10001.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/10001.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/100010.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/100010.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/100011.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/100011.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/1001.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/1001.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/10010.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/10010.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/100100.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/100100.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/100101.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/100101.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/10011.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/10011.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/100110.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/100110.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/100111.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/100111.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/101.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/101.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/1010.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/1010.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/10100.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/10100.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/101000.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/101000.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/101001.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/101001.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/11.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/11.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/110.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/110.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/blocks/111.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/blocks/111.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/states/age.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/states/age.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/states/eye.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/states/eye.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/states/lit.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/states/lit.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/get/states/up.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/get/states/up.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/place/check.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/place/check.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/place/cleanup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/place/cleanup.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/place/delete.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/place/delete.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/place/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/place/init.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/to_item/output.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/to_item/output.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/block/to_item/set.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/block/to_item/set.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/common/cleanup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/common/cleanup.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/common/setup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/common/setup.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/data/type/array.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/data/type/array.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/data/type/numeric.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/data/type/numeric.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/data/type/object.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/data/type/object.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/data/type/setup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/data/type/setup.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/data/type/string.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/data/type/string.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/inventory/give/drop.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/inventory/give/drop.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/inventory/give/set.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/inventory/give/set.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/inventory/give/slot.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/inventory/give/slot.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/helpers/player/teleport/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/helpers/player/teleport/init.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/init.mcfunction: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/moxlib/function/load.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/load.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/math/_load.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/math/_load.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/math/_objectives.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/math/_objectives.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/math/array_to_integer/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/math/array_to_integer/init.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/math/constants.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/math/constants.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/math/power/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/math/power/init.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/math/power/iterate.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/math/power/iterate.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/math/string_to_integer/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/math/string_to_integer/init.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/objectives.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/objectives.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/player/_objectives.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/player/_objectives.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/player/id.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/player/id.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/player/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/player/init.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/player/scroll/direction.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/player/scroll/direction.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/player/scroll/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/player/scroll/init.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/player/scroll/scrolled.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/player/scroll/scrolled.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/player/tags.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/player/tags.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/spec/check.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/spec/check.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/spec/data/_perform.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/spec/data/_perform.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/spec/data/array/_perform.mcfunction: -------------------------------------------------------------------------------- 1 | function moxlib:spec/data/array/slice 2 | -------------------------------------------------------------------------------- /data/moxlib/function/spec/data/array/slice.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/spec/data/array/slice.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/spec/data/compare_different.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/spec/data/compare_different.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/spec/data/compare_same.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/spec/data/compare_same.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/spec/data/get.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/spec/data/get.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/spec/data/includes.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/spec/data/includes.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/spec/data/not_includes.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/spec/data/not_includes.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/spec/data/set.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/spec/data/set.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/spec/helpers/data/_perform.mcfunction: -------------------------------------------------------------------------------- 1 | function moxlib:spec/helpers/data/type/_perform -------------------------------------------------------------------------------- /data/moxlib/function/spec/helpers/data/type/array.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/spec/helpers/data/type/array.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/spec/helpers/data/type/byte.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/spec/helpers/data/type/byte.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/spec/helpers/data/type/float.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/spec/helpers/data/type/float.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/spec/helpers/data/type/int.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/spec/helpers/data/type/int.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/spec/helpers/data/type/long.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/spec/helpers/data/type/long.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/spec/helpers/data/type/short.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/spec/helpers/data/type/short.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/spec/perform.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/spec/perform.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/string/_load.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/string/_load.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/string/_objectives.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/string/_objectives.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/string/ascii/lookup.macro.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/string/ascii/lookup.macro.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/string/ascii/table.macro.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/string/ascii/table.macro.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/string/ascii/table.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/string/ascii/table.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/string/common/cleanup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/string/common/cleanup.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/string/common/setup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/string/common/setup.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/string/from_array/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/string/from_array/init.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/string/from_array/iterate.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/string/from_array/iterate.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/string/newline.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/string/newline.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/string/to_array/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/string/to_array/init.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/string/to_array/iterate.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/string/to_array/iterate.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/test/_objectives.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard objectives add moxlib.test dummy -------------------------------------------------------------------------------- /data/moxlib/function/test/common/cleanup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/test/common/cleanup.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/test/common/reset.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/test/common/reset.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/test/perform/check.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/test/perform/check.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/test/perform/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/test/perform/init.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/test/perform/log.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/test/perform/log.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/test/perform/log/fail.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/test/perform/log/fail.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/test/perform/log/pass.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/test/perform/log/pass.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/test/summary.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/test/summary.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/tui/_objectives.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/tui/_objectives.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/tui/cleanup/reset.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/tui/cleanup/reset.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/tui/common/cleanup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/tui/common/cleanup.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/tui/common/setup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/tui/common/setup.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/tui/render/clear.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/tui/render/clear.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/tui/render/data/bulletless.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/tui/render/data/bulletless.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/tui/render/data/trigger.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/tui/render/data/trigger.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/tui/render/defaults.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/tui/render/defaults.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/tui/render/display.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/tui/render/display.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/tui/render/display/footer.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/tui/render/display/footer.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/tui/render/display/header.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/tui/render/display/header.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/tui/render/display/json.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/tui/render/display/json.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/tui/render/display/padding.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/tui/render/display/padding.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/tui/render/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/tui/render/init.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/tui/render/iterate.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/tui/render/iterate.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/tui/select/builtin/page.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/tui/select/builtin/page.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/tui/select/function.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/tui/select/function.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/tui/select/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/tui/select/init.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/tui/select/iterate.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/tui/select/iterate.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/tui/select/slot.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/tui/select/slot.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/tui/warnings/404.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/tui/warnings/404.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/verify/cleanup.mcfunction: -------------------------------------------------------------------------------- 1 | data remove storage moxlib:api/verify output 2 | -------------------------------------------------------------------------------- /data/moxlib/function/version.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/version.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/z_dfu/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/z_dfu/init.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/z_dfu/v0/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/function/z_dfu/v0/init.mcfunction -------------------------------------------------------------------------------- /data/moxlib/function/z_dfu/v0/v5_12.mcfunction: -------------------------------------------------------------------------------- 1 | data remove storage moxlib:api/string/ascii/table output -------------------------------------------------------------------------------- /data/moxlib/item_modifier/helpers/player/head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/item_modifier/helpers/player/head.json -------------------------------------------------------------------------------- /data/moxlib/item_modifier/string/resolve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/item_modifier/string/resolve.json -------------------------------------------------------------------------------- /data/moxlib/loot_table/string/ascii.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/loot_table/string/ascii.json -------------------------------------------------------------------------------- /data/moxlib/loot_table/string/newline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/loot_table/string/newline.json -------------------------------------------------------------------------------- /data/moxlib/predicate/api/entity/has_passenger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/api/entity/has_passenger.json -------------------------------------------------------------------------------- /data/moxlib/predicate/api/entity/has_vehicle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/api/entity/has_vehicle.json -------------------------------------------------------------------------------- /data/moxlib/predicate/api/player/has_died.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/api/player/has_died.json -------------------------------------------------------------------------------- /data/moxlib/predicate/api/player/has_killed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/api/player/has_killed.json -------------------------------------------------------------------------------- /data/moxlib/predicate/api/player/has_killed_player.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/api/player/has_killed_player.json -------------------------------------------------------------------------------- /data/moxlib/predicate/api/player/has_scrolled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/api/player/has_scrolled.json -------------------------------------------------------------------------------- /data/moxlib/predicate/api/player/is_on_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/api/player/is_on_fire.json -------------------------------------------------------------------------------- /data/moxlib/predicate/api/player/is_sneaking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/api/player/is_sneaking.json -------------------------------------------------------------------------------- /data/moxlib/predicate/api/player/is_sprinting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/api/player/is_sprinting.json -------------------------------------------------------------------------------- /data/moxlib/predicate/api/player/is_swimming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/api/player/is_swimming.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/0.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/1.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/10.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/11.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/12.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/13.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/14.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/15.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/16.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/17.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/18.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/19.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/2.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/20.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/21.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/22.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/23.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/24.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/25.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/3.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/4.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/5.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/6.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/7.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/8.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/age/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/age/9.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/attached.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/attached.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/axis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/axis.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/axis/x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/axis/x.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/axis/y.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/axis/y.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/axis/z.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/axis/z.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/berries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/berries.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/bites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/bites.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/bites/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/bites/0.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/bites/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/bites/1.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/bites/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/bites/2.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/bites/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/bites/3.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/bites/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/bites/4.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/bites/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/bites/5.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/bites/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/bites/6.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/bloom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/bloom.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/bottom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/bottom.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/charges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/charges.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/delay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/delay.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/delay/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/delay/1.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/delay/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/delay/2.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/delay/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/delay/3.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/delay/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/delay/4.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/disarmed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/disarmed.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/distance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/distance.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/down.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/down.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/drag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/drag.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/east.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/east.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/east/low.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/east/low.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/eggs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/eggs.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/eggs/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/eggs/1.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/eggs/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/eggs/2.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/eggs/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/eggs/3.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/eggs/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/eggs/4.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/enabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/enabled.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/extended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/extended.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/eye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/eye.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/eye/true.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/eye/true.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/face.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/face.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/facing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/facing.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/half.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/half.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/half/top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/half/top.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/hanging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/hanging.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/has_book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/has_book.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/hatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/hatch.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/hatch/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/hatch/0.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/hatch/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/hatch/1.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/hatch/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/hatch/2.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/hinge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/hinge.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/in_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/in_wall.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/init.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/init.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/layers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/layers.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/layers/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/layers/1.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/layers/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/layers/2.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/layers/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/layers/3.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/layers/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/layers/4.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/layers/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/layers/5.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/layers/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/layers/6.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/layers/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/layers/7.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/layers/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/layers/8.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/leaves.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/level.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/level/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/level/0.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/level/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/level/1.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/level/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/level/10.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/level/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/level/11.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/level/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/level/12.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/level/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/level/13.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/level/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/level/14.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/level/15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/level/15.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/level/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/level/2.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/level/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/level/3.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/level/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/level/4.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/level/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/level/5.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/level/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/level/6.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/level/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/level/7.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/level/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/level/8.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/level/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/level/9.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/lit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/lit.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/lit/true.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/lit/true.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/locked.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/locked.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/mode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/mode.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/moisture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/moisture.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/north.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/north.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/0.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/1.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/10.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/11.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/12.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/13.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/14.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/15.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/16.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/17.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/18.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/19.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/2.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/20.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/21.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/22.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/23.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/24.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/3.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/4.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/5.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/6.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/7.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/8.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/note/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/note/9.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/occupied.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/occupied.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/open.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/open.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/part.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/part.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/pickles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/pickles.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/power.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/power.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/power/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/power/0.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/power/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/power/1.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/power/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/power/10.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/power/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/power/11.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/power/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/power/12.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/power/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/power/13.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/power/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/power/14.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/power/15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/power/15.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/power/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/power/2.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/power/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/power/3.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/power/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/power/4.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/power/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/power/5.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/power/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/power/6.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/power/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/power/7.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/power/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/power/8.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/power/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/power/9.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/powered.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/powered.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/rotation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/rotation.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/shape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/shape.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/snowy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/snowy.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/south.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/south.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/stage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/stage.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/stage/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/stage/0.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/stage/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/stage/1.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/tilt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/tilt.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/type.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/type/top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/type/top.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/unstable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/unstable.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/up.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/up.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/up/false.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/up/false.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/up/true.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/up/true.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/west.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/west.json -------------------------------------------------------------------------------- /data/moxlib/predicate/helpers/block/get/states/west/low.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/helpers/block/get/states/west/low.json -------------------------------------------------------------------------------- /data/moxlib/predicate/tui/selected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/predicate/tui/selected.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/00.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/00000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/00000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/000000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/000000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0000000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0000000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0000001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0000001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/000001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/000001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0000010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0000010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0000011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0000011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/00001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/00001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/000010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/000010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0000100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0000100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0000101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0000101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/000011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/000011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0000110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0000110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0000111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0000111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/00010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/00010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/000100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/000100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0001000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0001000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0001001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0001001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/000101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/000101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0001010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0001010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0001011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0001011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/00011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/00011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/000110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/000110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0001100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0001100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0001101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0001101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/000111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/000111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0001110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0001110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0001111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0001111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/00100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/00100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/001000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/001000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0010000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0010000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0010001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0010001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/001001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/001001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0010010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0010010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0010011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0010011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/00101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/00101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/001010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/001010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0010100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0010100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0010101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0010101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/001011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/001011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0010110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0010110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0010111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0010111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/00110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/00110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/001100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/001100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0011000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0011000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0011001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0011001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/001101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/001101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0011010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0011010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0011011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0011011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/00111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/00111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/001110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/001110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0011100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0011100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0011101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0011101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/001111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/001111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0011110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0011110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0011111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0011111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/01.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/01000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/01000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/010000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/010000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0100000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0100000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0100001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0100001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/010001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/010001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0100010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0100010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0100011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0100011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/01001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/01001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/010010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/010010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0100100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0100100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0100101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0100101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/010011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/010011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0100110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0100110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0100111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0100111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/01010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/01010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/010100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/010100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0101000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0101000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0101001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0101001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/010101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/010101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0101010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0101010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0101011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0101011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/01011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/01011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/010110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/010110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0101100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0101100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0101101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0101101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/010111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/010111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0101110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0101110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0101111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0101111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/01100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/01100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/011000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/011000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0110000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0110000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0110001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0110001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/011001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/011001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0110010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0110010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0110011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0110011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/01101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/01101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/011010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/011010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0110100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0110100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0110101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0110101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/011011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/011011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0110110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0110110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0110111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0110111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/01110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/01110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/011100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/011100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0111000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0111000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0111001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0111001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/011101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/011101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0111010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0111010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0111011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0111011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/01111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/01111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/011110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/011110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0111100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0111100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0111101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0111101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/011111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/011111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0111110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0111110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/0111111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/0111111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/10.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/10000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/10000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/100000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/100000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1000000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1000000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1000001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1000001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/100001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/100001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1000010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1000010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1000011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1000011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/10001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/10001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/100010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/100010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1000100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1000100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1000101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1000101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/100011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/100011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1000110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1000110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1000111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1000111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/10010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/10010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/100100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/100100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1001000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1001000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1001001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1001001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/100101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/100101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1001010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1001010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1001011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1001011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/10011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/10011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/100110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/100110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1001100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1001100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1001101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1001101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/100111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/100111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1001110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1001110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1001111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1001111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/10100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/10100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/101000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/101000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1010000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1010000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1010001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1010001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/101001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/101001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1010010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1010010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1010011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1010011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/10101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/10101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/101010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/101010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1010100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1010100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1010101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1010101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/101011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/101011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1010110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1010110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1010111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1010111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/10110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/10110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/101100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/101100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1011000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1011000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1011001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1011001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/101101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/101101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1011010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1011010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1011011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1011011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/10111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/10111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/101110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/101110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1011100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1011100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1011101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1011101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/101111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/101111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1011110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1011110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1011111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1011111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/11.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/11000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/11000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/110000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/110000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1100000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1100000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1100001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1100001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/110001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/110001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1100010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1100010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1100011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1100011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/11001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/11001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/110010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/110010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1100100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1100100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1100101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1100101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/110011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/110011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1100110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1100110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1100111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1100111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/11010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/11010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/110100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/110100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1101000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1101000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1101001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1101001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/110101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/110101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1101010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1101010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1101011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1101011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/11011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/11011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/110110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/110110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1101100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1101100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1101101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1101101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/110111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/110111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1101110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1101110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1101111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1101111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/11100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/11100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/111000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/111000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1110000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1110000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1110001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1110001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/111001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/111001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1110010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1110010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1110011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1110011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/11101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/11101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/111010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/111010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1110100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1110100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1110101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1110101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/111011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/111011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1110110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1110110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1110111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1110111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/11110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/11110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/111100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/111100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1111000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1111000.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1111001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1111001.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/111101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/111101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1111010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1111010.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1111011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1111011.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/11111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/11111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/111110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/111110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1111100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1111100.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1111101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1111101.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/111111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/111111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1111110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1111110.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/1111111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/1111111.json -------------------------------------------------------------------------------- /data/moxlib/tags/block/helpers/block/get/blocks/init.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/block/helpers/block/get/blocks/init.json -------------------------------------------------------------------------------- /data/moxlib/tags/function/api/helpers/block/place/finished.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /data/moxlib/tags/function/api/load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/function/api/load.json -------------------------------------------------------------------------------- /data/moxlib/tags/function/api/player/on_death.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } 4 | -------------------------------------------------------------------------------- /data/moxlib/tags/function/api/player/on_kill.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } 4 | -------------------------------------------------------------------------------- /data/moxlib/tags/function/api/player/on_player_kill.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } 4 | -------------------------------------------------------------------------------- /data/moxlib/tags/function/api/player/on_scroll.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } 4 | -------------------------------------------------------------------------------- /data/moxlib/tags/function/api/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/function/api/test.json -------------------------------------------------------------------------------- /data/moxlib/tags/function/api/tui/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } 4 | -------------------------------------------------------------------------------- /data/moxlib/tags/function/api/tui/init.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/function/api/tui/init.json -------------------------------------------------------------------------------- /data/moxlib/tags/function/api/tui/render/init.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } 4 | -------------------------------------------------------------------------------- /data/moxlib/tags/function/api/tui/render/slot.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } 4 | -------------------------------------------------------------------------------- /data/moxlib/tags/function/api/tui/select/init.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } 4 | -------------------------------------------------------------------------------- /data/moxlib/tags/function/api/tui/select/slot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/function/api/tui/select/slot.json -------------------------------------------------------------------------------- /data/moxlib/tags/function/load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/data/moxlib/tags/function/load.json -------------------------------------------------------------------------------- /docs/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/docs/data.md -------------------------------------------------------------------------------- /docs/dimension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/docs/dimension.md -------------------------------------------------------------------------------- /docs/helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/docs/helpers.md -------------------------------------------------------------------------------- /docs/math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/docs/math.md -------------------------------------------------------------------------------- /docs/player.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/docs/player.md -------------------------------------------------------------------------------- /docs/string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/docs/string.md -------------------------------------------------------------------------------- /docs/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/docs/test.md -------------------------------------------------------------------------------- /docs/tui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/docs/tui.md -------------------------------------------------------------------------------- /pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/pack.mcmeta -------------------------------------------------------------------------------- /pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxvallix/moxlib/HEAD/pack.png --------------------------------------------------------------------------------