Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/18/2020 in all areas

  1. Darn, I was hoping to do the same. Shame to hear it's not working with the updated firmware. I don't have any Launchpads, yet. But as a matter of interest I had a quick look at the code. At a guess, this line here: seqregex = re.compile("MIDIbox SEQ V4:MIDIbox SEQ V4 MIDI ([1-4]) [0-9]") Needs to be updated for the new v4+ firmware. Have you tried editing it to: seqregex = re.compile("MIDIbox SEQ V4+:MIDIbox SEQ V4+ MIDI ([1-4]) [0-9]") i.e. just add the + symbol two times to match the updated name you posted in the output of mido.get_input_names(). Not sure how you tried to modify the regex, but that would be my first thing to try! Oh and you might find that the + character confuses the regex, so if that doesn't work, try using a \ before each + which you add. So it looks like this: seqregex = re.compile("MIDIbox SEQ V4\+:MIDIbox SEQ V4\+ MIDI ([1-4]) [0-9]") Hope you get it up and running....
    1 point
  2. Hello some update were made on the dokuwiki ;) dipCoreF4 A reduced Core for your MIDIbox App, an STM32F405RG in a DIP40 format. Features MIOS32 uses same processor family and drivers(no deep change). Same internal hardware as Disco or wCore (speed, memory, peripherals, etc…) . Board pinout and package compatible with a MIOS8 PIC USB connector onboard. 2 OTG are available, second(new) USB is Host only. 5V power input and led. 3.3V regulator and led on board. 74HCT541 on board for the 5V output ports. User and Reset buttons. 2 user leds. 12 extra pins for USB, buttons and leds. Your favorite Core is now a current component easy to integrate. All commons MIOS32 ports are available except: General purpose J10x ports were removed. LCD port was reduced to a serial one, no more pins J15.D0-D7 , no back-light power supply. 2 UART only(2 MIDI In/2Out). 2 AIN channels only(e.g. pedal inputs). SPI slave only supported by J19(SPI3). Check the dipBoardF4 for more details Download dipCoreF4 eagle lib for easy integration in your design. dipcoref4_v2a.zip Pinout The dipCoreF4 and the legacy MIOS32 ports. Check dipBoardF4 for more details about the connectors. BOM Due to the small SMD, which is sometime a difficulty to solder, the board is already assembled by manufacturer, except the connectors. The mini-USB is optional. Qty Value Package Parts Mouser Reichelt Conrad LCSC Notes Headers 3 1*20 male 437-3501012000006101 No Adapted to sockets Mill-Max 0552-1-15-01-11-27-10-0 or 0553-1-15-15-11-27-10-0 Connnector 1 mini-USB THT USB 571-1734510-1 no! for other ref take care about restricted area!
    1 point
  3. a lot of pictures of the build, some explaination: http://wiki.midibox.org/doku.php?id=scale-explorer#teaser some coding and real world jamsession has to be done the next months, so i dont uploadet a code yet... What it does shortly: Indicate via LEDs over the Keys, what Notes fit to the actual set Scale. I preprogrammed 240 scales, when i change the root note (on the fly) this are 2400 or more scales... programming scales, and songs is easy - just play a melody! or connect your sequencer in feed Scale-Explorer with your song! (root +2 +2 + 3+ 3+ is a scale for example... but it dont matter in which order you press it, my code detect its order) so you can indicate what scales, or notes you use in your song, or indicate what your Jaming Partner is playing on is Gitarsynth or Keyboard or Sequencer (in the case you dont hear notes as "notes" like me!) the songmode, is a "always recording" one, that means, you hit record after you played what you wanted to record... its more easy to not "try and try and try to make a perfect record" just jam, and when you think - whoo hoo that was awsome! press Record, set the loop points (which in length are always multiples of the set tact 4/4 leading into 4 8 16 32... 3/4 to 3 6 12 24...) and maybe press "purge" to clean not used notes and to shift it to Step 1... 8 Songs per scale are possible 128 scales are saved on one preset which can be loadet from sd-card, each scale can hold 8 songs/song parts, which is saved as 1 song on the SD-Card, that song is automaticly loaded by changing a scale.... So the SD-Card is pretty full with songfiles... There is a Trigger Amplifier and Schmitt trigger built in (Konga Trigger), which retrigger the pressed Keys, or Trigger Songsteps and go to the next song step while you can hold a step with Footswitch or Reset the Song to Jump to Step 1... Last Jamsession, i was sitting on this Wood-SnareDrum Instrument, clamped the trigger mic on the bassreflex opening, recordet a short snipped of the keyboard a other person played, and began to play the base, snare and "Wood" part of this 8 man Jamsession, in short time i was leading the thing, because Snare Wood Bass and its melody was fitting in this environment... i loved it! i am not a good drummer, or keyboard, but this for me was the holy grail, Electronic Music with real Humans instead of clock driven sequencers... i hope i can get you a video next month! Prepgrammed scales are: (thy have also names, but that would a bit to much for this post ;) // SCALES s8 new_scale[Nr_off_Files][128][13] = { { //File 0 {1,1,1,3,1,2,1,0,0,0,0,0,0},{1,1,2,2,2,2,0,0,0,0,0,0,0},{1,4,2,2,0,0,0,0,0,0,0,0,0},{1,7,2,0,0,0,0,0,0,0,0,0,0},{1,1,2,1,2,1,2,0,0,0,0,0,0},{4,4,0,0,0,0,0,0,0,0,0,0,0},{1,2,4,1,0,0,0,0,0,0,0,0,0},{1,1,3,2,1,2,0,0,0,0,0,0,0},//0 {1,2,1,2,1,2,1,0,0,0,0,0,0},{1,1,1,1,1,2,1,2,0,0,0,0,0},{1,1,1,2,1,1,1,2,0,0,0,0,0},{1,1,2,1,2,3,0,0,0,0,0,0,0},{1,2,1,3,1,2,0,0,0,0,0,0,0},{1,1,3,2,2,1,0,0,0,0,0,0,0},{1,1,3,2,3,0,0,0,0,0,0,0,0},{1,1,2,1,2,2,1,0,0,0,0,0,0},//1 {1,1,3,2,1,1,0,0,0,0,0,0,0},{1,1,2,2,1,2,0,0,0,0,0,0,0},{2,2,3,2,0,0,0,0,0,0,0,0,0},{1,1,1,2,1,2,1,1,0,0,0,0,0},{1,2,3,2,2,0,0,0,0,0,0,0,0},{1,1,1,2,2,1,2,0,0,0,0,0,0},{1,1,1,1,3,3,0,0,0,0,0,0,0},{1,1,1,1,1,1,1,1,1,0,0,0,0},//2 {1,1,1,1,1,1,1,1,2,0,0,0,0},{3,3,3,0,0,0,0,0,0,0,0,0,0},{3,9,0,0,0,0,0,0,0,0,0,0,0},{4,8,0,0,0,0,0,0,0,0,0,0,0},{2,2,2,3,0,0,0,0,0,0,0,0,0},{1,2,2,1,3,0,0,0,0,0,0,0,0},{1,1,2,1,3,2,0,0,0,0,0,0,0},{1,1,1,1,1,1,1,1,0,0,0,0,0},//3 {1,1,1,1,1,1,1,2,0,0,0,0,0},{1,1,1,1,1,1,1,3,0,0,0,0,0},{1,1,1,1,1,1,2,1,0,0,0,0,0},{1,1,1,1,1,1,3,1,0,0,0,0,0},{1,1,1,1,1,2,1,1,0,0,0,0,0},{1,1,1,1,1,3,1,1,0,0,0,0,0},{1,1,1,1,2,1,1,1,0,0,0,0,0},{1,1,1,1,1,1,2,2,0,0,0,0,0},//4 {1,1,1,1,2,1,1,2,0,0,0,0,0},{1,1,1,1,2,1,2,1,0,0,0,0,0},{1,1,1,1,2,2,1,1,0,0,0,0,0},{1,2,2,2,2,0,0,0,0,0,0,0,0},{2,2,3,0,0,0,0,0,0,0,0,0,0},{1,2,2,2,3,0,0,0,0,0,0,0,0},{1,1,1,3,1,3,0,0,0,0,0,0,0},{2,3,2,0,0,0,0,0,0,0,0,0,0},//5 {1,2,2,2,1,0,0,0,0,0,0,0,0},{1,3,1,3,1,0,0,0,0,0,0,0,0},{1,1,2,1,3,1,0,0,0,0,0,0,0},{1,1,3,1,3,1,0,0,0,0,0,0,0},{1,1,2,2,2,1,0,0,0,0,0,0,0},{1,1,3,1,2,1,0,0,0,0,0,0,0},{1,1,3,1,2,2,0,0,0,0,0,0,0},{1,2,1,2,2,1,0,0,0,0,0,0,0},//6 {1,1,1,1,1,2,2,1,0,0,0,0,0},{1,1,1,2,3,1,1,0,0,0,0,0,0},{1,1,2,1,1,3,1,0,0,0,0,0,0},{1,1,1,1,2,2,1,0,0,0,0,0,0},{1,2,1,4,2,0,0,0,0,0,0,0,0},{1,1,1,1,1,1,0,0,0,0,0,0,0},{1,1,1,1,1,2,0,0,0,0,0,0,0},{1,1,1,1,1,5,0,0,0,0,0,0,0},//7 {1,1,1,1,2,1,0,0,0,0,0,0,0},{1,1,1,1,5,1,0,0,0,0,0,0,0},{1,1,1,2,1,1,0,0,0,0,0,0,0},{1,1,1,5,1,1,0,0,0,0,0,0,0},{1,1,1,1,1,3,0,0,0,0,0,0,0},{1,1,1,1,1,4,0,0,0,0,0,0,0},{1,1,1,1,3,1,0,0,0,0,0,0,0},{1,1,1,1,2,2,0,0,0,0,0,0,0},//8 {1,1,1,1,2,4,0,0,0,0,0,0,0},{1,1,1,1,4,2,0,0,0,0,0,0,0},{1,1,1,2,1,2,0,0,0,0,0,0,0},{1,1,1,2,1,4,0,0,0,0,0,0,0},{1,1,1,2,4,1,0,0,0,0,0,0,0},{1,1,1,4,2,1,0,0,0,0,0,0,0},{1,1,2,1,1,2,0,0,0,0,0,0,0},{1,1,2,1,1,4,0,0,0,0,0,0,0},//9 {1,1,2,1,2,1,0,0,0,0,0,0,0},{1,1,2,1,4,1,0,0,0,0,0,0,0},{1,1,1,1,2,3,0,0,0,0,0,0,0},{1,1,1,2,1,3,0,0,0,0,0,0,0},{1,1,1,2,2,3,0,0,0,0,0,0,0},{1,1,2,3,2,1,0,0,0,0,0,0,0},{1,1,1,1,1,0,0,0,0,0,0,0,0},{1,1,1,1,2,0,0,0,0,0,0,0,0},//10 {1,1,1,1,6,0,0,0,0,0,0,0,0},{1,1,1,2,1,0,0,0,0,0,0,0,0},{1,1,1,6,1,0,0,0,0,0,0,0,0},{1,1,2,1,1,0,0,0,0,0,0,0,0},{1,1,1,1,3,0,0,0,0,0,0,0,0},{1,1,1,1,5,0,0,0,0,0,0,0,0},{1,1,1,3,1,0,0,0,0,0,0,0,0},{1,1,1,5,1,0,0,0,0,0,0,0,0},//11 {1,1,3,1,1,0,0,0,0,0,0,0,0},{1,1,1,1,4,0,0,0,0,0,0,0,0},{1,1,1,2,2,0,0,0,0,0,0,0,0},{1,1,1,2,5,0,0,0,0,0,0,0,0},{1,1,2,1,2,0,0,0,0,0,0,0,0},{1,1,2,1,5,0,0,0,0,0,0,0,0},{1,1,2,2,1,0,0,0,0,0,0,0,0},{1,1,2,5,1,0,0,0,0,0,0,0,0},//12 {1,1,5,1,2,0,0,0,0,0,0,0,0},{1,1,5,2,1,0,0,0,0,0,0,0,0},{1,1,1,2,3,0,0,0,0,0,0,0,0},{1,1,1,2,4,0,0,0,0,0,0,0,0},{1,1,1,3,2,0,0,0,0,0,0,0,0},{1,1,1,3,4,0,0,0,0,0,0,0,0},{1,1,1,4,2,0,0,0,0,0,0,0,0},{1,1,1,4,3,0,0,0,0,0,0,0,0},//13 {1,1,2,1,3,0,0,0,0,0,0,0,0},{1,1,2,1,4,0,0,0,0,0,0,0,0},{1,1,2,3,1,0,0,0,0,0,0,0,0},{1,1,4,3,1,0,0,0,0,0,0,0,0},{1,1,1,3,3,0,0,0,0,0,0,0,0},{1,1,2,4,2,0,0,0,0,0,0,0,0},{1,2,2,1,2,0,0,0,0,0,0,0,0},{1,1,2,3,3,0,0,0,0,0,0,0,0},//14 {1,1,3,2,2,0,0,0,0,0,0,0,0},{1,1,3,3,2,0,0,0,0,0,0,0,0},{1,2,3,1,3,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0} //15 }, { //File 1 {1,1,2,3,1,2,0,0,0,0,0,0,0},{1,2,1,2,1,0,0,0,0,0,0,0,0},{1,4,2,3,0,0,0,0,0,0,0,0,0},{5,0,0,0,0,0,0,0,0,0,0,0,0},{1,4,1,4,0,0,0,0,0,0,0,0,0},{1,2,1,2,1,2,0,0,0,0,0,0,0},{2,5,0,0,0,0,0,0,0,0,0,0,0},{1,2,2,3,2,0,0,0,0,0,0,0,0},//0 {1,2,1,2,2,2,0,0,0,0,0,0,0},{1,1,1,2,2,2,1,0,0,0,0,0,0},{1,2,2,5,0,0,0,0,0,0,0,0,0},{1,2,2,1,2,2,0,0,0,0,0,0,0},{1,1,2,2,1,2,1,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},//1 {1,2,3,2,0,0,0,0,0,0,0,0,0},{1,2,4,2,0,0,0,0,0,0,0,0,0},{1,1,1,1,1,2,1,1,1,0,0,0,0},{1,1,1,2,3,1,0,0,0,0,0,0,0},{1,1,1,3,2,1,0,0,0,0,0,0,0},{1,1,1,3,1,2,0,0,0,0,0,0,0},{1,1,2,2,1,1,0,0,0,0,0,0,0},{1,1,1,4,1,1,0,0,0,0,0,0,0},//2 {1,1,2,2,3,1,0,0,0,0,0,0,0},{1,1,4,1,2,1,0,0,0,0,0,0,0},{1,1,1,4,1,2,0,0,0,0,0,0,0},{1,1,1,1,4,1,0,0,0,0,0,0,0},{1,1,1,2,2,2,0,0,0,0,0,0,0},{1,1,1,3,1,1,0,0,0,0,0,0,0},{1,1,1,3,3,1,0,0,0,0,0,0,0},{1,1,1,1,3,2,0,0,0,0,0,0,0},//3 {1,1,2,1,2,2,0,0,0,0,0,0,0},{1,1,2,1,1,3,0,0,0,0,0,0,0},{1,1,1,3,1,1,1,0,0,0,0,0,0},{2,4,2,0,0,0,0,0,0,0,0,0,0},{1,2,3,1,2,0,0,0,0,0,0,0,0},{1,5,1,0,0,0,0,0,0,0,0,0,0},{1,1,2,1,1,2,2,0,0,0,0,0,0},{1,1,1,1,1,1,1,0,0,0,0,0,0},//4 {1,1,1,1,1,1,2,0,0,0,0,0,0},{1,1,1,1,1,1,4,0,0,0,0,0,0},{1,1,1,1,1,2,1,0,0,0,0,0,0},{1,1,1,1,1,4,1,0,0,0,0,0,0},{1,1,1,1,2,1,1,0,0,0,0,0,0},{1,1,1,1,4,1,1,0,0,0,0,0,0},{1,1,1,2,1,1,1,0,0,0,0,0,0},{1,1,1,1,1,1,3,0,0,0,0,0,0},//5 {1,1,1,1,1,3,1,0,0,0,0,0,0},{1,1,1,1,1,2,2,0,0,0,0,0,0},{1,1,1,1,1,2,3,0,0,0,0,0,0},{1,1,1,1,1,3,2,0,0,0,0,0,0},{1,1,1,1,2,1,2,0,0,0,0,0,0},{1,1,1,1,2,1,3,0,0,0,0,0,0},{1,1,1,1,2,3,1,0,0,0,0,0,0},{1,1,1,1,3,1,2,0,0,0,0,0,0},//6 {1,1,1,1,3,2,1,0,0,0,0,0,0},{1,1,1,2,1,1,2,0,0,0,0,0,0},{1,1,1,2,1,1,3,0,0,0,0,0,0},{1,1,1,2,1,2,1,0,0,0,0,0,0},{1,1,1,2,1,3,1,0,0,0,0,0,0},{1,1,1,3,2,1,1,0,0,0,0,0,0},{1,1,2,1,1,2,1,0,0,0,0,0,0},{1,1,3,1,1,2,1,0,0,0,0,0,0},//7 {1,1,1,1,2,2,2,0,0,0,0,0,0},{1,1,1,1,0,0,0,0,0,0,0,0,0},{1,1,1,2,0,0,0,0,0,0,0,0,0},{1,1,1,7,0,0,0,0,0,0,0,0,0},{1,1,2,1,0,0,0,0,0,0,0,0,0},{1,1,7,1,0,0,0,0,0,0,0,0,0},{1,1,1,3,0,0,0,0,0,0,0,0,0},{1,1,1,4,0,0,0,0,0,0,0,0,0},//8 {1,1,1,5,0,0,0,0,0,0,0,0,0},{1,1,5,1,0,0,0,0,0,0,0,0,0},{1,1,2,2,0,0,0,0,0,0,0,0,0},{1,1,2,6,0,0,0,0,0,0,0,0,0},{1,1,6,2,0,0,0,0,0,0,0,0,0},{1,2,1,2,0,0,0,0,0,0,0,0,0},{1,2,1,6,0,0,0,0,0,0,0,0,0},{1,2,2,1,0,0,0,0,0,0,0,0,0},//9 {1,1,2,3,0,0,0,0,0,0,0,0,0},{1,1,2,5,0,0,0,0,0,0,0,0,0},{1,1,3,2,0,0,0,0,0,0,0,0,0},{1,1,3,5,0,0,0,0,0,0,0,0,0},{1,2,1,3,0,0,0,0,0,0,0,0,0},{1,1,5,2,0,0,0,0,0,0,0,0,0},{1,1,5,3,0,0,0,0,0,0,0,0,0},{1,2,1,5,0,0,0,0,0,0,0,0,0},//10 {1,2,3,1,0,0,0,0,0,0,0,0,0},{1,2,5,1,0,0,0,0,0,0,0,0,0},{1,3,2,1,0,0,0,0,0,0,0,0,0},{1,1,2,4,0,0,0,0,0,0,0,0,0},{1,1,4,4,0,0,0,0,0,0,0,0,0},{1,1,3,3,0,0,0,0,0,0,0,0,0},{1,1,3,4,0,0,0,0,0,0,0,0,0},{1,3,1,4,0,0,0,0,0,0,0,0,0},//11 {1,2,2,4,0,0,0,0,0,0,0,0,0},{1,3,4,2,0,0,0,0,0,0,0,0,0},{2,2,2,2,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},//12 {1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},//13 {1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},//14 {1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0},{1,0,0,0,0,0,0,0,0,0,0,0,0} //15 }, { //File 2 {1,1,2,3,1,1,0,0,0,0,0,0,0},{3,5,0,0,0,0,0,0,0,0,0,0,0},{3,4,0,0,0,0,0,0,0,0,0,0,0},{1,2,1,2,1,3,0,0,0,0,0,0,0},{1,1,1,2,1,1,2,1,0,0,0,0,0},{1,2,1,3,3,0,0,0,0,0,0,0,0},{1,1,1,2,2,1,1,0,0,0,0,0,0},{2,3,4,0,0,0,0,0,0,0,0,0,0},//0 {1,2,3,2,1,0,0,0,0,0,0,0,0},{1,1,4,1,2,0,0,0,0,0,0,0,0},{1,3,2,3,0,0,0,0,0,0,0,0,0},{1,3,2,4,0,0,0,0,0,0,0,0,0},{1,3,1,5,0,0,0,0,0,0,0,0,0},{1,1,4,1,3,0,0,0,0,0,0,0,0},{1,1,1,5,2,0,0,0,0,0,0,0,0},{1,1,3,1,2,0,0,0,0,0,0,0,0},//1 {1,1,4,2,0,0,0,0,0,0,0,0,0},{1,2,1,2,3,0,0,0,0,0,0,0,0},{1,1,2,3,2,0,0,0,0,0,0,0,0},{1,2,2,1,4,0,0,0,0,0,0,0,0},{2,3,3,0,0,0,0,0,0,0,0,0,0},{1,1,2,2,2,0,0,0,0,0,0,0,0},{1,1,4,2,2,0,0,0,0,0,0,0,0},{1,1,2,2,4,0,0,0,0,0,0,0,0},//2 {1,1,4,3,0,0,0,0,0,0,0,0,0},{1,1,1,6,0,0,0,0,0,0,0,0,0},{1,2,2,2,0,0,0,0,0,0,0,0,0},{1,2,5,2,0,0,0,0,0,0,0,0,0},{1,1,3,1,3,0,0,0,0,0,0,0,0},{1,2,2,3,1,0,0,0,0,0,0,0,0},{1,4,3,0,0,0,0,0,0,0,0,0,0},{2,4,3,0,0,0,0,0,0,0,0,0,0},//3 {1,1,2,4,1,0,0,0,0,0,0,0,0},{1,4,3,2,0,0,0,0,0,0,0,0,0},{1,3,3,3,0,0,0,0,0,0,0,0,0},{1,2,2,3,0,0,0,0,0,0,0,0,0},{1,1,3,2,1,0,0,0,0,0,0,0,0},{1,1,3,1,0,0,0,0,0,0,0,0,0},{1,1,1,2,1,2,2,0,0,0,0,0,0},{1,1,4,1,0,0,0,0,0,0,0,0,0},//4 {1,3,2,2,0,0,0,0,0,0,0,0,0},{1,4,2,0,0,0,0,0,0,0,0,0,0},{1,5,0,0,0,0,0,0,0,0,0,0,0},{1,1,4,2,1,0,0,0,0,0,0,0,0},{1,2,1,3,1,0,0,0,0,0,0,0,0},{1,2,3,3,0,0,0,0,0,0,0,0,0},{1,2,1,4,1,0,0,0,0,0,0,0,0},{1,5,2,2,0,0,0,0,0,0,0,0,0},//5 {1,1,6,1,0,0,0,0,0,0,0,0,0},{1,1,1,2,2,1,0,0,0,0,0,0,0},{1,1,1,1,3,1,1,0,0,0,0,0,0},{1,3,3,2,0,0,0,0,0,0,0,0,0},{1,2,3,4,0,0,0,0,0,0,0,0,0},{1,3,3,1,0,0,0,0,0,0,0,0,0},{1,2,4,3,0,0,0,0,0,0,0,0,0},{1,1,3,4,1,0,0,0,0,0,0,0,0},//6 {1,1,1,1,1,1,1,2,1,0,0,0,0},{1,2,1,2,2,0,0,0,0,0,0,0,0},{1,1,1,2,3,2,0,0,0,0,0,0,0},{1,1,3,3,1,0,0,0,0,0,0,0,0},{1,2,4,0,0,0,0,0,0,0,0,0,0},{1,3,1,3,2,0,0,0,0,0,0,0,0},{1,1,3,1,4,0,0,0,0,0,0,0,0},{1,1,1,4,1,0,0,0,0,0,0,0,0},//7 {1,1,2,2,3,0,0,0,0,0,0,0,0},{1,2,1,4,0,0,0,0,0,0,0,0,0},{1,2,1,2,4,0,0,0,0,0,0,0,0},{1,1,1,1,2,1,1,1,1,0,0,0,0},{1,3,1,3,0,0,0,0,0,0,0,0,0},{1,1,1,0,0,0,0,0,0,0,0,0,0},{1,2,1,3,2,0,0,0,0,0,0,0,0},{1,3,2,2,2,0,0,0,0,0,0,0,0},//8 {1,1,2,1,1,2,1,1,0,0,0,0,0},{1,1,2,0,0,0,0,0,0,0,0,0,0},{1,1,8,0,0,0,0,0,0,0,0,0,0},{1,2,1,0,0,0,0,0,0,0,0,0,0},{1,1,3,0,0,0,0,0,0,0,0,0,0},{1,1,7,0,0,0,0,0,0,0,0,0,0},{1,3,1,0,0,0,0,0,0,0,0,0,0},{1,1,4,0,0,0,0,0,0,0,0,0,0},//9 {1,1,6,0,0,0,0,0,0,0,0,0,0},{1,4,1,0,0,0,0,0,0,0,0,0,0},{1,1,5,0,0,0,0,0,0,0,0,0,0},{1,2,2,0,0,0,0,0,0,0,0,0,0},{1,2,7,0,0,0,0,0,0,0,0,0,0},{1,2,3,0,0,0,0,0,0,0,0,0,0},{1,2,6,0,0,0,0,0,0,0,0,0,0},{1,3,2,0,0,0,0,0,0,0,0,0,0},//10 {1,3,6,0,0,0,0,0,0,0,0,0,0},{1,6,2,0,0,0,0,0,0,0,0,0,0},{1,6,3,0,0,0,0,0,0,0,0,0,0},{1,2,5,0,0,0,0,0,0,0,0,0,0},{1,4,5,0,0,0,0,0,0,0,0,0,0},{1,5,2,0,0,0,0,0,0,0,0,0,0},{1,5,4,0,0,0,0,0,0,0,0,0,0},{1,3,3,0,0,0,0,0,0,0,0,0,0},//11 {1,3,5,0,0,0,0,0,0,0,0,0,0},{1,5,3,0,0,0,0,0,0,0,0,0,0},{1,3,4,0,0,0,0,0,0,0,0,0,0},{1,4,4,0,0,0,0,0,0,0,0,0,0},{2,2,2,0,0,0,0,0,0,0,0,0,0},{2,2,4,0,0,0,0,0,0,0,0,0,0},{6,0,0,0,0,0,0,0,0,0,0,0,0},{1,3,2,1,3,0,0,0,0,0,0,0,0},//12 {1,1,0,0,0,0,0,0,0,0,0,0,0},{1,2,0,0,0,0,0,0,0,0,0,0,0},{1,9,0,0,0,0,0,0,0,0,0,0,0},{1,3,0,0,0,0,0,0,0,0,0,0,0},{1,8,0,0,0,0,0,0,0,0,0,0,0},{1,4,0,0,0,0,0,0,0,0,0,0,0},{1,7,0,0,0,0,0,0,0,0,0,0,0},{1,6,0,0,0,0,0,0,0,0,0,0,0},//13 {2,2,0,0,0,0,0,0,0,0,0,0,0},{2,3,0,0,0,0,0,0,0,0,0,0,0},{2,4,0,0,0,0,0,0,0,0,0,0,0},{2,6,0,0,0,0,0,0,0,0,0,0,0},{3,3,0,0,0,0,0,0,0,0,0,0,0},{5,4,0,0,0,0,0,0,0,0,0,0,0},{1,1,4,1,1,0,0,0,0,0,0,0,0},{1,1,2,2,1,3,0,0,0,0,0,0,0},//14 {1,1,2,2,1,1,2,0,0,0,0,0,0},{1,1,1,3,1,1,2,0,0,0,0,0,0},{1,1,1,3,2,2,0,0,0,0,0,0,0},{2,0,0,0,0,0,0,0,0,0,0,0,0},{2,2,5,0,0,0,0,0,0,0,0,0,0},{2,7,0,0,0,0,0,0,0,0,0,0,0},{2,2,2,2,2,0,0,0,0,0,0,0,0},{1,1,1,1,3,1,1,1,0,0,0,0,0} //15 } // End of File 2
    1 point
×
×
  • Create New...